🥷
Offensive Security
  • Shells and stuffs
    • Bind Shell
    • Reverse Shell
    • TTY Shell
    • File Transfer
    • Handmade Network Scan
  • Services enumeration
    • DNS Enumeration
    • SMB Enumeration
    • NFS Enumeration
  • Linux Privilege Escalation
    • Useful Tools
    • Hijack X11 session
    • Linux capabilities
    • LXC membership
  • Windows Privilege Escalation
    • Useful Tools
  • Password Attacks
    • Build Wordlist
    • Network Service Attacks
    • Password Cracking
  • Active Directory
    • AD CS
  • OSINT
    • Google Dorks
Powered by GitBook
On this page
  • Network scan
  • Mount NFS share
  • Available folders to mount
  • Mount
  1. Services enumeration

NFS Enumeration

Network scan

nmap -sV -p 111 192.168.1.0/24
nmap -sV -p 111 --script=rpcinfo 192.168.1.0/24
nmap -p 111 --script nfs* <IP>

Mount NFS share

Available folders to mount

showmount -e <IP>

Mount

mount -o nolock <IP>:/<Share> <Local Folder>
PreviousSMB EnumerationNextUseful Tools

Last updated 2 years ago