💻
oscp-study-notes
  • What is this?
  • Scanning & Enumeration
    • FTP 21
    • SMTP 25
    • HTTP/HTTPS 80/443/*
    • SMB 139/443
  • Vulnerabilites & Exploitation
    • Socket Programming
    • Generate shellcodes
    • Shellshock
    • Cross Compiling
    • LFI/RFI
    • SQL Injection
    • CVE2009-3103
    • MS17-010
  • Privilege Escalation
  • File Transfers
  • Buffer Overflow
  • Port Redirection and Tunneling
  • Password Cracking
  • Proof
  • Netcat
  • Third-party Tools
  • Bypass AV
  • Methodology
  • Writing a report
  • Further Reading
Powered by GitBook
On this page
  • Host Discovery
  • Port Discovery
  • Service Identification

Was this helpful?

Scanning & Enumeration

Host Discovery

netdiscover -i eth0
nmap -sN 192.168.1.0/24

Port Discovery

nmap -sS $TARGET_IP -oA $OUPUT_FILE
nmap -Pn 192.168.0.10-12 -oA $OUPUT_FILE
unicornscan $TARGET_IP:a

Service Identification

nmap -sV 192.168.20.10-12 -oA $OUPUT_FILE
PreviousWhat is this?NextFTP 21

Last updated 5 years ago

Was this helpful?