Capture the Flag
1. Enumerate for services
- Get open ports.
1nmap -F <target>
- If http server, find php files
gobuster -w /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt -u http://<target> -x php
- Use
searchsploit
to find known exploits.
1nmap -F <target>
gobuster -w /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt -u http://<target> -x php
searchsploit
to find known exploits.