-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
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
an idea #14
Comments
For : subfinder -d domain.com |while read $host do; do python3 see-surf.py -H $host ;done it dont work : i got " usage: see-surf.py [-h] -H HOST [-t THREADS] [-c COOKIES [COOKIES ...]] [-v] [-p PAYLOAD] [-b BURP] see-surf.py: error: the following arguments are required: -H/--host " multiple times also for : python3 see-surf.py -r file.txt usage: see-surf.py [-h] -H HOST [-t THREADS] [-c COOKIES [COOKIES ...]] [-v] [-p PAYLOAD] [-b BURP] |
Thanks for reporting. Let me try that out and fix whats needed. |
Thanks @In3tinct , please tell us if you fix that errors .. Thanks again best , |
It seems your bash script problem. you need to remove "$" from "$host" in this line "while read $host do". Try this |
I'll add supplying multiple domains in the form of text file soon. |
subfinder -d domain.com |while read host do; do python3 see-surf.py -H $host ;done @In3tinct its not works : results : |
how to add see-surf to a bash script ?
example:
subfinder -d domain.com |while read $host do; do python3 see-surf.py -H $host ;done
or scanning multiple domain in a file.txt
like : python3 see-surf.py -r file.txt
The text was updated successfully, but these errors were encountered: