Knowing any FREE Linux security network monitoring and testing tools?
Hi Guys,
I am working on a project and looking for tools to monitor and test the network setting and configurating. I am trying to hit and break the system as much as I can. If you guys expert out there know any tools or links to the tools can send to me, I really appreciated.
Hi Wesly,
I am looking at the tcpdump now. Do you know what option can give me the actual data that packets capured? Thanks.
dfk
ntop is good....just dont leave it running for months on end as its likely to have some negative impact on your system. Its _very_ useful for getting snapshots of what is happening at specific times.
to answer your tcpdump question, firstly I'd suggest that you look at the man pages as the options are numerous (man tcpdump).
However, to get you started,
tcpdump -i eth0 -q
will give you some very quick information on current packets. You can use the verbose options if you need more information that what the quick (-q) option gives you.
80 packets received by filter
0 packets dropped by kernel
Hit ctrl-c to stop it.....
Rgds
Mark
wesly_chen
> what option can give me the actual data that packets capured?
If the data is encrypted, then you can not see the data in packets.
I used "snoop" command in Solaris to capture the data on telnet session. http://www.ussg.iu.edu/usail/man/solaris/snoop.1.html
Wesly
BooBoo1025
ASKER
Do you know any other tools that can help me monitoring in real time? thanks.
Here is a list of network security tools:
http://www.insecure.org/tools.html
I also recommend
Ethereal - network protocol analyzer, comes with a lot of Linux distribution:
http://www.ethereal.com/
TCPDump - very famous text-based network packet analyzer, similar to Ethereal, almost all the Linux include it:
http://www.tcpdump.org/
Windows version:
http://windump.polito.it/
Regards,
Wesly