File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -2758,7 +2758,7 @@ function help(){
2758
2758
printf " -a, --all All - Perform all checks and active exploitations\n"
2759
2759
printf " -w, --web Web - Perform web checks from list of subdomains\n"
2760
2760
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"
2762
2762
printf " -h Help - Show help section\n"
2763
2763
printf " \n"
2764
2764
printf " ${bblue} GENERAL OPTIONS${reset} \n"
@@ -2787,6 +2787,9 @@ function help(){
2787
2787
printf " ${byellow} Perform full recon and store output to specified directory:${reset} \n"
2788
2788
printf " ./reconftw.sh -d example.com -r -o custom/path\n"
2789
2789
printf " \n"
2790
+ printf " ${byellow} Run custom function:${reset} \n"
2791
+ printf " ./reconftw.sh -d example.com -c nuclei_check \n"
2792
+ printf " \n"
2790
2793
printf " ${byellow} Start the web server:${reset} \n"
2791
2794
printf " ./reconftw.sh --web-server start\n"
2792
2795
printf " \n"
@@ -2925,7 +2928,7 @@ while true; do
2925
2928
shift
2926
2929
continue
2927
2930
;;
2928
- ' -c' )
2931
+ ' -c' | ' --custom ' )
2929
2932
custom_function=$2
2930
2933
opt_mode=' c'
2931
2934
shift 2
You can’t perform that action at this time.
0 commit comments