nmap --script=http-methods x.x.x.x
nmap --script http-methods --script-args http-methods.url-path='/website' x.x.x.x
gobuster vhost -u example.com -w some_wordlist.txt
gobuster -u example.com -w some_wordlist.txt vhost
gobuster dir -u mytarget.com -w path/to/my/awesome/wordlist.txt -e -t 100 -x php,txt,html,htm
gobuster dir -u mytarget.com -w path/to/my/awesome/wordlist.txt -e -t 100 -x jpg,jpeg,png,gif,ico
gobuster dir -u mytarget.com -w path/to/my/awesome/wordlist.txt -k
gobuster dir -u mytarget.com -w path/to/my/awesome/wordlist.txt -U BasicAuthUser -P BasicAuthPass
snmpwalk -v1 -c [Community string] [IP address of the host] [OID of the system information MIB]
snmpwalk -v2c -c -c [Community string] [IP address of host] [OID of system information MIB]
snmpwalk -v3 -l authNoPriv -u [User name] -a MD5 -A [User password] [IP address of host] [OID of system information MIB]
snmpwalk -v3 -l authPriv -u [User name] -a MD5 -A [User password] -x DES -X [DES password] [IP address of host] [OID of system information MIB]
snmpwalk -v3 -l noAuthNoPriv -u [User name] [IP address of the host] [OID of the system information MIB]