Schlagwort: commands

Home / commands
Beitrag

Some Nmap Commands

Turn on OS and version detection scanning script (IPv4) nmap -A 192.168.1.254 nmap -v -A 192.168.1.1 nmap -A -iL /tmp/scanlist.txt Find out if a host/network is protected by a firewall nmap -sA 192.168.1.254 Scan a host when protected by the firewall nmap -PN 192.168.1.1 Scan a network and find out which servers and devices are...

Beitrag

Linux monitoring tools

Here is a list of various Linux monitoring tools and statistics files: Overall Tools: top, vmstat, sar, ps, pstree, ipcs CPU: top, mpstat, tload, /proc/cpuinfo, x86info Memory: free, /proc/meminfo, slabtop, /proc/slabinfo, ipcs I/O: iostat, vmstat...

Beitrag

Linux: Handy Varnish commands

Experimentiere gerade etwas mit Varnish und da sind die Befehle ganz nützlich: varnishlog See what Varnish is currently processing. varnishtop -i RxHeader -I ^Referer Show the referer (sic) header for requests. varnishtop -b -i TxURL Shows requests made to the backend (-b) where the line matches (-i) the transmit URL (TxURL). Basically, shows you what...