Skip to content
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

Open
karim-jpg opened this issue Dec 29, 2021 · 6 comments
Open

an idea #14

karim-jpg opened this issue Dec 29, 2021 · 6 comments

Comments

@karim-jpg
Copy link

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

@sedorf
Copy link

sedorf commented Aug 28, 2022

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
i got the same

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

@In3tinct
Copy link
Owner

In3tinct commented Sep 6, 2022

Thanks for reporting. Let me try that out and fix whats needed.

@sedorf
Copy link

sedorf commented Sep 6, 2022

Thanks @In3tinct , please tell us if you fix that errors ..

Thanks again

best ,

@In3tinct
Copy link
Owner

In3tinct commented Sep 8, 2022

It seems your bash script problem. you need to remove "$" from "$host" in this line "while read $host do". Try this
subfinder -d domain.com |while read host do; do python3 see-surf.py -H $host ;done

@In3tinct
Copy link
Owner

In3tinct commented Sep 8, 2022

I'll add supplying multiple domains in the form of text file soon.

@sedorf
Copy link

sedorf commented Sep 8, 2022

subfinder -d domain.com |while read host do; do python3 see-surf.py -H $host ;done

@In3tinct its not works :

results :
Terminating... Please enter Host in the format http://google.com or https://google.com or http://10.10.10.10 for internal hosts

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants