Other technologies
SNMP
Simple Network Management Protocol is a protocol used to monitor different devices in the network (like routers, switches, printers, IoTs...).
Enumeration
snmpwalk -Os -c public <ip>
snmpcheck <ip>
msf> use auxiliary/scanner/snmp/snmp_enumBrute-force Community Strings
hydra -P <wordlist> <host> snmp
onesixtyone -c <wordlist> <ip>
msf> use auxiliary/scanner/snmp/snmp_loginResources
WebDav
Scanning
davtestIn metasploit:
search webdavIf vulnerable use: Churrasco
Apache Subversion (SVN)
Software versioning and revision control system
# Get files on the server
svn co <url>NFS
NFS allows a system to share directories and files with others over a network.
Enumeration
# List NFS shares
/usr/sbin/showmount -e <IP>Mount Shares
# Make directory for the mount point
mkdir /tmp/mount
# Mount the share
sudo mount -t nfs <IP>:<share> /tmp/mount/ -nolockQUIC Protocol
QUIC is a general-purpose transport layer network protocol
Access Pages with Curl
curl --http3 https://site.comBuild Curl From Source
Refer to this if your version of curl doesn't support QUIC.
Last updated