mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-18 07:47:42 +02:00
8 lines
184 B
Bash
Executable File
8 lines
184 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# $1 = subdomain
|
|
# usage $2 = domain_name scan result path
|
|
|
|
rm -rf $2
|
|
python3 /app/tools/dirsearch/dirsearch.py /app/tools/dirsearch/db/dicc.txt -u $1 --json-report=$2 -e *
|