You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The regex for "Detection: Common Ransomware Extensions" will never match on entries in the lookup, ransomware_extensions_lookup, that contain "double" file extensions. That is, patterns with more than one segment after the first period. Currently this only affects the following:
Line 16: *.Where_my_files.txt, Apocalypse
Line 24: *.bart.zip, Bart
Consider implementing the following regex to match on these edge cases: | rex field=file_name "(?<file_extension>(\.[^\.]+{1,2})$"
Expected behavior
The expected behavior is for this detection to match any file extension within the associated lookup.