We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When running some script like
find /var/www/jsrecon/links/ -maxdepth 3 -name "waybackurl*" -print0 | while IFS= read -r -d '' file; do gf potential $file ; done
you will find instead of using the input file as target , the current direcotry when running the script will be considered as target .
I think it is because of
files := flag.Arg(1) if files == "" { files = "." }
in main.go
This bug wasted me more than 4 hours, hope it can get fixed
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When running some script like
you will find instead of using the input file as target , the current direcotry when running the script will be considered as target .
I think it is because of
in main.go
This bug wasted me more than 4 hours, hope it can get fixed
The text was updated successfully, but these errors were encountered: