<aside> 📌 Table of content
</aside>
White-box testing: Involves having access to the application's source code, infrastructure, and design documentation. Requires specific skills to identify vulnerabilities in the source code.
Black-box testing: Assumes no prior knowledge of the target application, requiring extensive enumeration efforts to discover vulnerabilities. A common approach in bug bounty engagements.
Grey-box testing: Involves having limited information about the target, such as authentication methods or framework details. Falls between white-box and black-box testing approaches.
sudo nmap -p80 --script=http-enum 192.168.50.20
<aside> 💡 Just a reminder of this technology.
</aside>
gobuster dir -u 192.168.50.20 -w /usr/share/wordlists/dirb/common.txt -t 5
python3 dirsearch.py -e php,html,js -u <https://target>
python3 dirsearch.py -e php,html,js -u <https://target> -w /path/to/wordlist
https://github.com/maurosoria/dirsearch
Also keep in mind other tools like :