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_enum

Bruteforce community strings

hydra -P <wordlist> <host> snmp
onesixtyone -c <wordlist> <ip>
msf> use auxiliary/scanner/snmp/snmp_login

Resources

WebDav

Scanning

  1. davtest

  2. In metasploit: search webdav

  3. If 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/ -nolock

QUIC protocol

QUIC is a general-purpose transport layer network protocol

Access pages with Curl

curl --http3 https://site.com

Build Curl from source

Refer to this if your version of curl doesn't support QUIC.

Last updated