Introduction

This page includes a number of initial techniques and one-liners to help with enumeration.


Nmap

Initial scan

nmap -vv -sV -sC -oN initial <ip>

Full scan

nmap -vv -sV -sC -p- -A -oN full <ip>

Gobuster

gobuster dir -u http://<host> -w /usr/share/wordlists/dirb/common.txt


References