LinkFinder icon indicating copy to clipboard operation
LinkFinder copied to clipboard

Add support for list of urls

Open attacker34 opened this issue 5 years ago • 1 comments

Hi @Willianvdv

I used Waybackurls and got list of js urls now i want that output to be fed into Linkfinder but could not find any Option for feeding urls.txt into linkfinder.

Please add support for urls txt file.

Thanks.

attacker34 avatar Feb 10 '20 05:02 attacker34

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