JSFinder in Termux – Installation & Usage Commands

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 -y

Install Git and Python.

pkg install git python -y

Clone the JSFinder repository.

git clone https://github.com/Threezh1/JSFinder.git

Move into the project directory.

cd JSFinder

Install the required Python modules.

pip install requests beautifulsoup4 bs4

Display the help menu.

python JSFinder.py -h

JSFinder 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 -h

Scan a website.

python JSFinder.py -u https://example.com

Scan 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.txt

Save discovered URLs to a file.

python JSFinder.py -u https://example.com -ou urls.txt

Save discovered subdomains to a file.

python JSFinder.py -u https://example.com -os subdomains.txt

Search inside JavaScript files.

python JSFinder.py -u https://example.com -j

Perform a deep scan.

python JSFinder.py -u https://example.com -d

After 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.

SHARE THIS POST: