LinkFinder icon indicating copy to clipboard operation
LinkFinder copied to clipboard

List of URLS

Open bootyhunt3r opened this issue 4 years ago • 6 comments

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.

bootyhunt3r avatar Feb 17 '21 17:02 bootyhunt3r

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

velocity16902 avatar Feb 26 '21 09:02 velocity16902

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

bootyhunt3r avatar Feb 28 '21 06:02 bootyhunt3r

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

imon001 avatar Mar 23 '21 05:03 imon001

@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)>

bootyhunt3r avatar Mar 24 '21 13:03 bootyhunt3r

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

Sir-peck avatar Feb 28 '22 15:02 Sir-peck

Getting this error as well...

barrett092 avatar Mar 25 '22 16:03 barrett092