Open In App

Pompem – Exploit and Vulnerability Finder

Last Updated : 28 Nov, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

Pompem tool is an automation tool used in the phase of Vulnerability Scanning. This tool can find the exploits for a particular text. Now, this text can be CMS, Port service, Database, etc. Pompem tool makes the exploit search into CXSecurity,  ZeroDay,  Vulners,  National  Vulnerability  Databases, and results in the exploits name and link. We can save the results in two ways. The 1st way is to save in a .html file and 2nd way is to save in a text formatted file. The Pompem tool is developed in the Python language and is also available on the GitHub platform. It’s free and open-source to use.

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

Installation of Pompem 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/rfunix/Pompem.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 Pompem

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

sudo pip3 install -r requirements.txt

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

python3 pompem.py -h

Working with Pompem Tool on Kali Linux OS

Example 1: Text for search

python3 pompem.py -s ssh,ftp,mysql

In this example, we have given the text as ssh, ftp, mysql. Tool will find the exploits for the inputted text.

We have got the name and link of exploit available for the inputted text.

Example 2: Write HTML File

python3 pompem.py -s WordPress --html output

In this example, results will be saved as a html file.

We have displayed the results which are been saved as an html file.

Example 3: Write TEXT File

python3 pompem.py -s FortiGate --txt

In this example, results will be saved as text formatted file.

We have got the results for our search text.

The results are been saved in the text formatted file.


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads