mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
13 lines
225 B
Standard ML
13 lines
225 B
Standard ML
signature dpd_rfb_server {
|
|
ip-proto == tcp
|
|
payload /^RFB/
|
|
tcp-state responder
|
|
requires-reverse-signature dpd_rfb_client
|
|
enable "rfb"
|
|
}
|
|
|
|
signature dpd_rfb_client {
|
|
ip-proto == tcp
|
|
payload /^RFB/
|
|
tcp-state originator
|
|
}
|