Detecting Ransomware
Detecting Excessive File Overwrite Operations
index="ransomware_open_rename_sodinokibi" sourcetype="bro:smb_files:json"
| where action IN ("SMB::FILE_OPEN", "SMB::FILE_RENAME")
| bin _time span=5m
| stats count by _time, source, action
| where count>30
| stats sum(count) as count values(action) dc(action) as uniq_actions by _time, source
| where uniq_actions==2 AND count>100Detecting Excessive File Renaming with New Extensions
Additional Resources for Ransomware Detection:
Last updated