-
-
Save pwn1sher/502340881f3e8bf1ca1ca1b38b5c3e58 to your computer and use it in GitHub Desktop.
Usage of LinkFinder (@GerbenJavado)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - Navigate to page from where you want to extract links | |
| - Open your browser's console and paste the following ; | |
| document.querySelectorAll('script[src]').forEach((i)=>document.write(i.src+'<br/>')) | |
| - Copy all links and write it into a file (ex: jslinks.txt) | |
| - Open your terminal and cd to directory where you've downloaded LinkFinder | |
| - Run the following command | |
| for i in $(cat jslinks.txt); do python linkfinder.py -i "$i" -o cli; done | tee -a output.html | |
| You have it- all unique paths only :) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment