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

List of URLS #92

Open
bootyhunt3r opened this issue Feb 17, 2021 · 6 comments
Open

List of URLS #92

bootyhunt3r opened this issue Feb 17, 2021 · 6 comments

Comments

@bootyhunt3r
Copy link

Hello man ,
Can you add a feature to like , add the js file from a text file , I have a file full of js file endpoints but I cannot pass it through linkfinder , if you can add this feature , it would be really helpful.

@velocity16902
Copy link

Yes please, even i'm trying to input list of js links saved in .txt file.

@bootyhunt3r
Copy link
Author

Any update on this one ? Can you please update the script to work with the list of urls ?

@imon001
Copy link

imon001 commented Mar 23, 2021

you can try this simple bash script for use a list of .js urls in txt file. fst go to the directory where linkfinder is located.
then open terminal and type:
nano yourfile.sh
then copy-past the following lines:

#!/bin/bash
file=$1
lines=$(cat $file)
for line in $lines
do
python3 linkfinder.py -i $line -o cli
done

then save the file and exit with ctrl+x and enter.
then give execution permission to yourfile.sh with:
chmod +x ourfile.sh

now try it with:

./yourfile.sh js-list.txt

@bootyhunt3r
Copy link
Author

@imon001 , thanks man , but it works fine for some js files and then it shows this error :
Error: invalid input defined or SSL error: <urlopen error [SSL: TLSV1_ALERT_PROTOCOL_VERSION] tlsv1 alert protocol version (_ssl.c:1123)>

@Sir-peck
Copy link

I was having issues with this, but your fix worked perfectly so just want to say thank you imon001

@barrett092
Copy link

Getting this error as well...

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

5 participants