Skip to content

Files

Latest commit

ec086bb · Sep 17, 2021

History

History

Dirsearch

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Sep 17, 2021
Feb 2, 2020

README.md

Dirsearch Command

Using {{domain}} ReconNess replace {{domain}} for the subdomain.

python3 dirsearch.py -u {{domain}} -e php -r

Dirsearch Command for Docker

/app/dirsearch/dirsearch.py -u {{domain}} -e php -r

Dirsearch Script

Check Script file

Dirsearch Dockerfile Entry

# -------- Agents dependencies -------- 

# To allow run dirsearch inside the docker

RUN apt-get update && apt-get install -y git python3 python3-pip
RUN git clone https://github.com/maurosoria/dirsearch.git
RUN cd dirsearch && pip3 install -r requirements.txt

# -------- End Agents dependencies --------