These programs will generate a per protocol/port bandwidth usage information on a given server:
– Suramya
These programs will generate a per protocol/port bandwidth usage information on a given server:
– Suramya
Use a program called script, it makes a typescript of terminal session, meaning it logs everything printed on your terminal. Use `man script` to get more information about it.
– Suramya
These tools will help you identify which programs are opening what ports on the system.
1. lsof | grep ‘IPv.’
lsof shows the list of open files, piping it through grep and searching for IPv will give you a list of ports used by a program
lsof -i TCP:<PORT>
where PORT is the one you need to know about the program behind it.
2. netstat -anp
Should display open ports, machines connected to the ports as well as which application has that port open.
If you know of any other ways let me know.
– Suramya
Linux Magazine has a really good article on The Coroner Tool kit which allows a sysadmin to perform forensics analysis on a compromized system.
Article: Linux Magazine
The Coroner Toolkit: Download Page
– Suramya
These are light weight tools that alert you to suspicious network activity by analyzing iptables log files. This article contains information on how to install and configure psad.
– Suramya
Sometimes its desireable to setup an encrypted tunnel between two networked computers so that you can transfer data between them without letting anyone snoop the traffic.
The following are some of the programs that enable you to setup secure tunnels:
Cryptcat is the standard netcat enhanced with twofish encryption.
Stunnel is a program that allows you to encrypt arbitrary TCP connections inside SSL. It allows you to secure non-SSL aware daemons and protocols (like POP, IMAP, LDAP, etc) by having Stunnel provide the encryption, requiring no changes to the daemon’s code.
Zebedee is a simple program to establish an encrypted, compressed â??tunnelâ?? for TCP/IP or UDP data transfer between two systems.
SSH allows you to redirect local and remote ports over a secure SSH connection. The main advantage of this is that no extra software needs to be installed on the systems in order to use it.
In you know of others let me know and I will add them.
– Suramya
If you ever had to find all of the IP’s of the routers and computers on a network then these programs are for you. I havn’t tried them myself yet but they look promising. (The descriptions are taken verbatin from their respective websites)
Angry IP scanner is a very fast IP scanner for Windows. It can scan IPs in any range. Its binary file size is very small compared to other IP scanners. Angry IP scanner simply pings each IP address to check if it’s alive, then optionally it is resolving hostname, scans ports, etc.
A powerful connect-based TCP port scanner, pinger and hostname resolver. Multithreaded and asynchronous techniques make this program extremely fast and versatile. Perform ping scans and port scans using any IP range or specify a text file to extract addresses from.
Cheops is an Open Source Network User Interface. It is designed to be the network equivalent of a swiss-army knife, unifying your network utilities.
As usual if you know of any others let me know.
– Suramya
These are links to various sites that have information on Wireless LAN security. If you know of any other sites let me know and I will add them here.
Wireless security papers:
Lists a lot of papers on wireless security
Wardriving.com:
Has a lot of resources on Wardriving and how to protect against it
Wi-Fi Networking News:
Wi-Fi Networking News covers high-speed wireless networking and communications, focusing on Wi-Fi and related specifications.
Wi-Fi Planet:
A good source for Wi-Fi news
Securing Wireless Networks:
A good article on how to secure wireless networks
Wireless Intrusion Detection Systems:
Information on how to setup a Wireless Intrusion Detection system.
Wireless LAN Policies for Security &Management:
An interesting paper on setting up Wireless LAN security policies.
Airsnarf:
Airsnarf is a simple rogue wireless access point setup utility designed to demonstrate how a rogue AP can steal usernames and passwords from public wireless hotspots
WPA2 (Wi-Fi Protected Access 2):
WPA2 is the second generation of WPA security; providing enterprise and consumer Wi-Fi® users with a high level of assurance that only authorized users can access their wireless networks
– Suramya
Idle users are a big problem if the system doesn’t either log them out or lock the session. This is so because if a session is idle that means it might be unattended and could be used by an unauthorized person to gain access to restricted resources.
In windows idle the OS can be instructed to lock accounts after a specific idle time and in KDE/Gnome the screensaver’s allow us to the same thing. But this doesn’t cover the shell access. Users can remain logged in indefinetly unless they logout. Below are some programs that will log a user out if they exceed the specified idle time:
If you know of any other ways please let me know.
– Suramya
These program(s) help you audit user logon activity to locate unusual activity:
Available as part of the Security Guide Scripts Download, this is a multi-threaded tool that will parse event logs from many servers at the same time.
Instructions on how to use EventCombMT are available over here.
Update (08th Aug 2007): Fixed the link to download the software and added the link to the instructions page
Powered by WordPress