-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
144 additions
and
9 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
rule GraphicalProton_rsockstun { | ||
meta: | ||
author = "ditekShen" | ||
description = "Detects GraphicalProton custom rsockstun" | ||
cape_type = "GraphicalProton Payload" | ||
strings: | ||
$m1 = "main.connectviaproxy" ascii | ||
$m2 = "main.connectForSocks" ascii | ||
$m3 = "main.listenForClients" ascii | ||
$m4 = "main.listenForSocks" ascii | ||
$s1 = "Proxy-Authorization: NTLM TlRMTVNTUAABAAAABoIIAAAAAAAAAAAAAAAAAAAAAAA=" ascii | ||
$s2 = "Server: nginx/1.14.1" ascii | ||
$s3 = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" ascii | ||
$s4 = "wine_get" ascii | ||
condition: | ||
uint16(0) == 0x5a4d and ((all of ($m*) and 2 of ($s*)) or (all of ($s*) and 1 of ($m*)) or 7 of them) | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
rule RisePro { | ||
meta: | ||
author = "ditekShen" | ||
description = "Detects RisePro infostealer" | ||
cape_type = "RisePro Payload" | ||
strings: | ||
$x1 = "t.me/riseprosupport" ascii wide nocase | ||
$s1 = "failed readpacket" fullword wide | ||
$s2 = "faield sendpacket" fullword wide | ||
$s3 = "PersistWal" fullword wide | ||
$s4 = /CRED_ENUMERATE_(ALL|SESSION)_CREDENTIALS/ fullword ascii | ||
$s5 = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36" fullword wide | ||
$s6 = { 4c 00 6f 00 67 00 69 00 6e 00 20 00 44 00 61 00 | ||
74 00 61 [10] 57 00 65 00 62 00 20 00 44 00 61 00 | ||
74 00 61 [2] 48 00 69 00 73 00 74 00 6f 00 72 00 | ||
79 [21] 43 00 6f 00 6f 00 6b 00 69 00 65 00 73 } | ||
$s7 = { 61 00 70 00 70 00 6c 00 69 00 63 00 61 00 74 00 | ||
69 00 6f 00 6e 00 2f 00 78 00 2d 00 77 00 77 00 | ||
77 00 2d 00 66 00 6f 00 72 00 6d 00 2d 00 75 00 | ||
72 00 6c 00 65 00 6e 00 63 00 6f 00 64 00 65 00 | ||
64 00 3b 00 20 00 63 00 68 00 61 00 72 00 73 00 | ||
65 00 74 00 3d 00 75 00 74 00 66 00 2d 00 38 00 | ||
42 61 00 70 00 70 00 6c 00 69 00 63 00 61 00 74 | ||
00 69 00 6f 00 6e 00 2f 00 6a 00 73 00 6f 00 6e | ||
00 2c 00 20 00 74 00 65 00 78 00 74 00 2f 00 70 | ||
00 6c 00 61 00 69 00 6e 00 2c 00 20 00 2a 00 2f | ||
00 2a } | ||
$s8 = /_(SET|GET)_(GRABBER|LOADER)/ wide | ||
$s9 = /catch (save )?(windows cred|screen|pluginscrypto|historyCC|autofill|cookies|passwords|passwords sql|autofills sql|dwnlhistory sql|discordToken|quantum|isDropped)/ fullword wide | ||
condition: | ||
uint16(0) == 0x5a4d and (1 of ($x*) or 6 of ($s*)) | ||
} |
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