Skip to content

Commit edce836

Browse files
authored
Merge pull request #782 from six2dez/dev
Improving custom mode
2 parents 8718838 + 7345b5f commit edce836

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

reconftw.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2758,7 +2758,7 @@ function help(){
27582758
printf " -a, --all All - Perform all checks and active exploitations\n"
27592759
printf " -w, --web Web - Perform web checks from list of subdomains\n"
27602760
printf " -n, --osint OSINT - Check for public intel data\n"
2761-
printf " -c Launches specific function against target\n"
2761+
printf " -c, --custom Custom - Launches specific function against target, u need to know the function name first\n"
27622762
printf " -h Help - Show help section\n"
27632763
printf " \n"
27642764
printf " ${bblue}GENERAL OPTIONS${reset}\n"
@@ -2787,6 +2787,9 @@ function help(){
27872787
printf " ${byellow}Perform full recon and store output to specified directory:${reset}\n"
27882788
printf " ./reconftw.sh -d example.com -r -o custom/path\n"
27892789
printf " \n"
2790+
printf " ${byellow}Run custom function:${reset}\n"
2791+
printf " ./reconftw.sh -d example.com -c nuclei_check \n"
2792+
printf " \n"
27902793
printf " ${byellow}Start the web server:${reset}\n"
27912794
printf " ./reconftw.sh --web-server start\n"
27922795
printf " \n"
@@ -2925,7 +2928,7 @@ while true; do
29252928
shift
29262929
continue
29272930
;;
2928-
'-c')
2931+
'-c'|'--custom')
29292932
custom_function=$2
29302933
opt_mode='c'
29312934
shift 2

0 commit comments

Comments
 (0)