x1mdev / ReconPi

ReconPi - A lightweight recon tool that performs extensive scanning with the latest tools.

Home Page:https://x1m.nl/posts/recon-pi/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add GF into workflow

Anu-bhav opened this issue · comments

GFSCAN="$RESULTDIR/gfscan"

: 'Use gf to find secrets in meg file'
startGfScan(){
startFunction "Gf scan in meg files"
cd "$SUBS"/meg
for i in gf -list;
do
gf ${i} > "$GFSCAN"/"${i}".txt
[[ -s "$GFSCAN"/"${i}".txt ]] || rm "$GFSCAN"/"${i}".txt
done
cd -
}

startGfScan # add function after startMeg to run

Can you send a Pull request with change, we would love to have contribution.

Merged your change.