Installation of LinkFinder Tool on Kali Linux OS

Step 1: Use the following command to install the tool in your Kali Linux operating system.

git clone https://github.com/GerbenJavado/LinkFinder.git

Step 2: Now use the following command to move into the directory of the tool. You have to move in the directory in order to run the tool.

cd LinkFinder

Step 3: You are in the directory of the LinkFinder. Now you have to install a dependency of the LinkFinder using the following command.

sudo pip3 install -r requirements.txt

Step 4: Run the setup.py file to complete the installation.

sudo python3 setup.py install

Step 5: All the dependencies have been installed in your Kali Linux operating system. Now use the following command to run the tool and check the help section.

python3 linkfinder.py -h

LinkFinder – Script to search Endpoints in JavaScript Files

Hidden endpoints of the website can be used to perform Penetration Testing on the domain. Detection of these endpoints is difficult if we are using a manual way. So we need to have an automated script that can detect the endpoints of JavaScript links. LinkFinder is an automated tool developed in the Python language which detects the endpoints and their parameters on the target domain. The results are displayed in the .html format in the web browser, along with this we can also display the results in the terminal itself. LinkFinder tool is available on the GitHub platform, it’s free and open-source to use. LinkFinder tool also supports deep analysis on the target for more endpoint discovery.

Note: Make Sure You have Python Installed on your System, as this is a python-based tool. Click to check the Installation process – Python Installation Steps on Linux

Similar Reads

Installation of LinkFinder Tool on Kali Linux OS

Step 1: Use the following command to install the tool in your Kali Linux operating system....

Working with LinkFinder Tool on Kali Linux OS

Example 1: Most basic usage to find endpoints in an online JavaScript file and output the HTML results to results.html...

Contact Us