mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
23 lines
449 B
Standard ML
23 lines
449 B
Standard ML
signature dpd_ldap_client_udp {
|
|
ip-proto == udp
|
|
payload /^\x30.\x02\x01.\x60/
|
|
}
|
|
|
|
signature dpd_ldap_server_udp {
|
|
ip-proto == udp
|
|
payload /^\x30/
|
|
requires-reverse-signature dpd_ldap_client_udp
|
|
enable "LDAP_UDP"
|
|
}
|
|
|
|
signature dpd_ldap_client_tcp {
|
|
ip-proto == tcp
|
|
payload /^\x30.\x02\x01.\x60/
|
|
}
|
|
|
|
signature dpd_ldap_server_tcp {
|
|
ip-proto == tcp
|
|
payload /^\x30/
|
|
requires-reverse-signature dpd_ldap_client_tcp
|
|
enable "LDAP_TCP"
|
|
}
|