Last active
April 7, 2020 20:47
-
-
Save LloydLabs/5e9afdaa172be0c5ac516fe399e6a14e to your computer and use it in GitHub Desktop.
This is a rule to attempt to detect the SMBGhost packet (derived from https://github.com/ollypwn/SMBGhost/blob/master/scanner.py)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rule SMBv3_Scanner { | |
meta: | |
date = "2020-03-11" | |
author = "@LloydLabs" | |
author_url = "https://blog.syscall.party" | |
strings: | |
$pkt = {00 00 00 c0 fe 53 4d 42 40 00 00 00 00 00 00 00 | |
00 00 1f 00 00 00 00 00 00 00 00 00 00 00 00 00 | |
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | |
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | |
00 00 00 00 24 00 08 00 01 00 00 00 7f 00 00 00 | |
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | |
78 00 00 00 02 00 00 00 02 02 10 02 22 02 24 02 | |
00 03 02 03 10 03 11 03 00 00 00 00 01 00 26 00 | |
00 00 00 00 01 00 20 00 01 00 00 00 00 00 00 00 | |
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | |
00 00 00 00 00 00 00 00 00 00 00 00 03 00 0a 00 | |
00 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 | |
00 00 00 00} | |
condition: | |
$pkt | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment