-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- DPD signature now correctly includes `tcp-state` - Only match at beginning of DPD signature - Originator added to DPD signature, plus a requires-reverse-signature so that server data must get matched with client data - Split out any serialized data that starts with a number to hopefully reduce possible FPs - note this doesn't include floats because that can be inf - Trimmed pcaps
- Loading branch information
1 parent
e8a0668
commit ec7da53
Showing
63 changed files
with
563 additions
and
553 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,16 @@ | ||
signature resp-client { | ||
ip-proto == tcp | ||
payload /^.*\r\n/ | ||
tcp-state originator | ||
requires-reverse-signature resp-serialized-server | ||
event "Found possible Redis client data" | ||
enable "spicy_Redis" | ||
} | ||
|
||
signature resp-serialized-server { | ||
ip-proto == tcp | ||
payload /[+-:$*_#,(!=%`~>].*\r\n/ | ||
payload /^([-+_,].*\r\n|[:$*#(!=%`~>][+-]?[0-9]+(\.[0-9]*)?\r\n)/ | ||
tcp-state responder | ||
event "Found Redis server data" | ||
enable "spicy_Redis" | ||
} |
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
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
Oops, something went wrong.