./date
# active network connections
###
./netstat -anp
###
./lsof -i -n -P -l
###
./lsof -U -n -P -l
# arp cache
###
./arp -a
# kernel routing cache
###
./route -Cn
# process and memory information
###
./ps e -Alf --cols 3000
###
./ls -lR /proc/[0-9]*
###
./lsof -n -P -l
###
./lsof +L1 -n -P -l
###
./dd if=/dev/mem | ./nc -w 10 192.168.1.1 33333
# network interface information
###
./netstat -iea
###
./ifconfig -a
###
./ip addr show
# routing information
###
./netstat -rn
###
./ip route show table main
###
./ip rule show
# kernel symbol tables
###
./ls -alu /boot
./cat /boot/System.map
###
./cat /proc/ksyms
# loaded modules
###
./cat /proc/modules
# miscellanous
###
./uname -a
###
./uptime
###
./cat /proc/mounts
###
./date
###
fdisk -l

