Is it possible to detect VPN traffic ie. OpenVPN / PPTP etc..
--
Follow Security Onion on Twitter!
https://twitter.com/securityonion
---
You received this message because you are subscribed to the Google Groups "security-onion" group.
To unsubscribe from this group and stop receiving emails from it, send an email to security-onion+unsubscribe@googlegroups.com.
To post to this group, send email to security-onion@googlegroups.com.
Visit this group at https://groups.google.com/group/security-onion.
For more options, visit https://groups.google.com/d/optout.
Think i got this, just added some rules to local.rules
alert esp $HOME_NET any -> $EXTERNAL_NET any (msg:"Ipsec ESP data"; classtype:policy-violation; sid:99900001; rev:1;)
alert l2tp $HOME_NET any -> $EXTERNAL_NET any (msg:"Layer Two Tunneling Protocol Version 3"; classtype:policy-violation; sid:9900003; rev:1;)
alert udp $HOME_NET any -> $EXTERNAL_NET 1194 (msg: "OpenVPN!"; classtype:policy-violation; sid:9900004; rev:1;)
alert tcp $HOME_NET any -> $EXTERNAL_NET 1723 (msg:"VPN PPTP connection"; classtype:policy-violation; sid:9900005; rev:1;)
Thanks for the help :-)
alert udp $HOME_NET any -> $EXTERNAL_NET 1194 (msg: "OpenVPN!"; classtype:policy-violation; sid:9900004; rev:1;)
alert tcp $HOME_NET any -> $EXTERNAL_NET 1723 (msg:"VPN PPTP connection"; classtype:policy-violation; sid:9900005; rev:1;)