Cheat Sheet : Snort
Snort is a free/paid intrusion detection system, which also does packet logging and packet sniffing as well. Snort comes with built in rules and community rules that the security industry has submitted. The paid version gives you more of these and more up to date: * SNORT: there are 3 modes, packet sniffer, packet logger and ids * .To start snort in sniffer mode, start the snort service then open a terminal and type snort –v * .Ping another computer and see it captures that icmp traffic * SNORT RULES: a.A very simple one to start with is: log tcp any any -> 192.168.3.0/24 23 , this states to: log any tcp packets from any ip and any port to destination network 192.168.3.0/24 and destination port 23 b.You can add messages too, so lets say someone is trying to get to telnet on your network: alert tcp any any -> any 23 (msg: “hey this fools trying to use telnet!”;) c.It can also be bi-directional as in any leaving or coming for tel...