Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.26 KB

File metadata and controls

30 lines (21 loc) · 1.26 KB

Apache-Directory-Enumeration

This python script allow enumeration of Apache "Index Of" pages, such as:

Index of page

Use

python crawler.py <url> <path> <output_file> <search_type> <max_depth> <--log>

Example:

python crawler.py "http://lms.permx.htb" "/app/" "./apache.json" "BFS" 4

Parameters are as follow:

Parameter Type Description
url String Base url to search.
path String Base path to the apache directory. You need to see the page.
output_file String Path to the output file. Should be a .json.
search_type String Depth First Search DFS or Breath First Search BFS.
max_depth Int The maximum depth the crawler search.
--log Optional boolean switch Activate the printing of logs.

CTRL + c Will stop the search and output the current finding.