coffeetohack
  • Introduction
  • Methodology
  • Cheatsheet
    • Ports
    • Nmap
    • Directory Bruteforce
    • Password Cracking
    • Web Server
    • Shells
    • TTY Shells
    • File Transfers
    • XSS | SQLi
    • LFI / RFI
    • File Uploads
    • Port Forwarding
  • Framework/Application
    • CMS Made Simple
    • Blundit
    • Wordpress
    • OctoberCMS
    • Tomcat
  • Windows PrivEsc
    • Scheduled Tasks
    • Stored Passwords
    • Installed Apps
    • Unquoted Service Path
    • Binary Paths
    • DLL Hijacking
    • Startup Apps
    • Executable Files
    • Registry
    • Run As
  • Linux PrivEsc
    • Sudo
    • SUID
    • Capabilities
    • Scheduled Tasks
    • NFS Root Squashing
    • Docker
  • Buffer Overflow
    • dostackbufferoverflow
    • BoF 1
    • Vulnserver
    • Brainpan
    • Brainstorm
  • Initial Shell Exploits
  • PrivEsc Exploits
  • Cisco Packet Tracer
  • Active Directory
    • Methodology
    • LLMNR Poisioning
    • Cracking Hashes
    • SMB Relay
    • IPv6 Attacks
    • PowerView
    • Bloodhound
    • Pass The Hash
    • Token Impersonation
    • Kerberoasting
    • GPP Attack
    • URL File Attack
    • PrintNightmare
    • Mimikatz
    • Golden Ticket Attack
  • OSINT
Powered by GitBook
On this page

Was this helpful?

  1. Cheatsheet

Nmap

nmap -oN nmap1000.txt --top-ports 1000 -open -Pn 10.10.10.10
nmap -oN nmapall.txt -p- -Pn 10.10.10.10
nmap -Pn --top-ports 100 10.10.10.10
nmap -Pn -sC -sV 10.10.10.10
sudo nmap -sU -Pn -sC 10.10.10.10
nmap -p- -Pn -T4 10.10.10.10
nmap -sT -Pn -sT 10.10.10.10
nmap --script vuln -Pn -p 10.10.10.10
sudo nmap -sU -p- --min-rate 10000 10.10.10.10
nmap -A -Pn -p 10.10.10.10
PreviousPortsNextDirectory Bruteforce

Last updated 3 years ago

Was this helpful?