JSFinder is a simple and powerful reconnaissance tool that helps you find JavaScript files on websites. It can crawl web pages, extract JavaScript URLs, discover subdomains, and help you find hidden website resources. It is useful for learning web reconnaissance, bug bounty hunting, and OSINT.
Here’s what you can do with JSFinder in Termux:
- Find JavaScript files on websites.
- Extract JavaScript URLs.
- Discover subdomains.
- Scan websites for useful resources.
- Perform deep JavaScript scanning.
- Save URLs to a file.
- Save subdomains to a file.
- Perform web reconnaissance.
Install JSFinder in Termux
Follow the commands below to install JSFinder in Termux. Copy and run each command one by one to download the tool and prepare it for JavaScript reconnaissance.
Update Termux packages.
pkg update && pkg upgrade -yInstall Git and Python.
pkg install git python -yClone the JSFinder repository.
git clone https://github.com/Threezh1/JSFinder.gitMove into the project directory.
cd JSFinderInstall the required Python modules.
pip install requests beautifulsoup4 bs4Display the help menu.
python JSFinder.py -hJSFinder is now installed and ready to use.
Use JSFinder in Termux
After installing JSFinder, run the tool with the target website URL.
Display the help menu.
python JSFinder.py -hScan a website.
python JSFinder.py -u https://example.comScan a website using cookies.
python JSFinder.py -u https://example.com -c "PHPSESSID=your_cookie"Scan multiple websites from a file.
python JSFinder.py -f targets.txtSave discovered URLs to a file.
python JSFinder.py -u https://example.com -ou urls.txtSave discovered subdomains to a file.
python JSFinder.py -u https://example.com -os subdomains.txtSearch inside JavaScript files.
python JSFinder.py -u https://example.com -jPerform a deep scan.
python JSFinder.py -u https://example.com -dAfter running the scan, JSFinder will automatically collect JavaScript URLs, website resources, and subdomains from the target website.
End Note
JSFinder helps you discover JavaScript files and other useful website resources with just a few commands. It is a great tool for learning web reconnaissance, OSINT, and bug bounty techniques. It can also help you discover hidden URLs and subdomains on websites.
