Web Application
DirBuster is a multi-threaded Java application designed to brute force directories and files on web servers. It features a graphical user interface and supports various brute-forcing methods to discover hidden content.
sudo apt install dirbuster
dirbuster (GUI application)
DirBuster is a multi-threaded Java application developed by OWASP that brute forces directories and files on web servers using a graphical user interface.
DirBuster features a visual directory tree that dynamically builds as the scan progresses, making it easy to see discovered paths in real-time. It supports both directory and file name brute forcing.
While DirBuster has been discontinued, it was one of the pioneering directory brute force tools that inspired modern alternatives like gobuster and ffuf.
dirbusterLaunch the DirBuster graphical user interfacedirbuster -u http://example.comPre-set the target URL when launching the GUIdirbuster -HRun DirBuster in headless mode with no GUIdirbuster -H -u http://example.com -l /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txtHeadless scan of a target with a specified wordlistdirbuster -l /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txtSpecify the list-based brute force wordlist filedirbuster -H -u http://example.com -l wordlist.txt -e php,html,txtHeadless scan appending file extensions to each worddirbuster -H -u http://example.com -l wordlist.txt -t 50Set the number of concurrent worker threads to 50dirbuster -H -u http://example.com -l wordlist.txt -r results.txtWrite scan results to a report filedirbuster -H -u http://example.com -l wordlist.txt -RDisable recursive scanning of discovered directoriesdirbuster -gForce DirBuster to start in GUI modedirbuster -C pureUse pure brute force mode instead of a wordlistdirbuster -H -u http://example.com -C a-z0-9 -m 1 -M 8Pure brute force using a charset with min/max lengthdirbuster -m 1Set the minimum length for pure brute force modedirbuster -M 8Set the maximum length for pure brute force modedirbuster -H -u http://example.com -l wordlist.txt -s /adminSet the starting directory point for the scanDiscover hidden directories and files with real-time visual feedback in a GUI.
Beginner-friendly introduction to web content discovery through a graphical interface.
For users who prefer graphical interfaces over command-line tools.
Simple point-and-click directory scanning for small web applications.
The interface provides a list of hits with their corresponding status codes, and dynamically builds a visual tree mapping out the hidden architecture of the site.
This tool is designed for authorized security testing, educational purposes, and legitimate network administration only. Unauthorized access to computer systems is illegal.