Merge in SNORT/snort3 from ~BSACHDEV/snort3:multihop_evasive to master
Squashed commit of the following:
commit
c6bb3ceb3ed9afe5986e6fc347cca9efcb55211c
Author: bsachdev <bsachdev@cisco.com>
Date: Mon Feb 10 12:34:53 2025 -0500
appid: implemented support for shadow traffic evasive vpn & multihop proxy
is_publishing_set = true;
}
}
+ if (attributeBits & ATTR_APPEVASIVEVPN)
+ {
+ shadow_bits |= ShadowTraffic_Type_Evasive_VPN;
+ if (!is_publishing_set)
+ {
+ publishing_appid = id;
+ is_publishing_set = true;
+ }
+ }
+ if (attributeBits & ATTR_APPMULTIHOPPROXY)
+ {
+ shadow_bits |= ShadowTraffic_Type_Multihop_Proxy;
+ if (!is_publishing_set)
+ {
+ publishing_appid = id;
+ is_publishing_set = true;
+ }
+ }
}
}