🤑
hacking-methodology
Github
  • README
  • Reconnaissance
    • Web
    • Web attacks
      • CRLF Injection
      • IDOR
      • File Inclusion
      • File Upload
      • SSRF
      • CSRF
      • XSS
    • Databases
    • DBMS
      • MySQL
      • MSSQL
      • ORACLE
      • REDIS
      • MongoDB
      • SQLite
    • Windows
    • Other technologies
  • Privilege Escalation
    • Linux
      • Path Hijacking
      • Shared Library Misconfigurations
      • USBCreator D-Bus
    • Windows
      • Active Directory Enumeration
      • Services & Features
  • Binary Exploitation
    • Format String Vulnerability
  • Miscellaneous
    • Universal Tools and Resources
    • Methodology, Tricks & Common sense
  • Language Specific Exploits
    • Python
      • Data Model Parsing (pytorch / pickle)
Powered by GitBook
On this page
  • SNMP
  • Enumeration
  • Brute-force Community Strings
  • Resources
  • WebDav
  • Scanning
  • Apache Subversion (SVN)
  • NFS
  • Enumeration
  • Mount Shares
  • QUIC Protocol
  • Access Pages with Curl
  • Build Curl From Source
  1. Reconnaissance

Other technologies

PreviousWindowsNextLinux

Last updated 5 months ago

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

Brute-force 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

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

If vulnerable use:

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

Wordlist for community strings
Churrasco
Explanation and guide
Wikipedia
this