Skip to main content

Web path scanner.

# To scan a web server for common paths with common extensions:
dirsearch --url <url> --extensions-list

# To scan a list of web servers for common paths with the '.php' extension:
dirsearch --url-list <path/to/url-list.txt> --extensions <php>

# To scan a web server for user-defined paths with common extensions:
dirsearch --url <url> --extensions-list --wordlist <path/to/url-paths.txt>

# To scan a web server using a cookie:
dirsearch --url <url> --extensions <php> --cookie <cookie>

# To scan a web server using the 'HEAD' HTTP method:
dirsearch --url <url> --extensions <php> --http-method <HEAD>

# To scan a web server, saving the results to a '.json' file:
dirsearch --url <url> --extensions <php> --json-report <path/to/report.json>