What is Weeman?
Weeman is a popular tool used for phishing in the world of ethical hacking. It is a python-based tool that allows you to create fake phishing pages and trick users into entering their sensitive information. In this blog post, we will discuss how to use Weeman in Kali Linux.
Step 1: Installation
To install Weeman, you need to have Python and Git installed on your system. Open the terminal in Kali Linux and run the following command:
sudo apt install python git
Next, clone the Weeman repository using the following command:
git clone https://github.com/evait-security/weeman.git
Step 2: Configuration Now that you have installed Weeman, you can navigate to the directory and run the setup script. Run the following command to navigate to the directory:
cd weeman
And then run the setup script with the following command:
sudo python setup.py install
Step 3: Creating a Phishing Page To create a phishing page, you need to run the following command in the terminal:
sudo python weeman.py
This will open the Weeman prompt where you can start creating your phishing page.
Step 4: Setting up the Phishing Page In the Weeman prompt, you need to enter the following commands to set up your phishing page:
set url https://facebook.com
set action_url https://facebook.com/login.php
The “set url” command sets the URL of the phishing page, while the “set action_url” command sets the action URL, where the data entered by the user will be sent.
Step 5: Starting the Phishing Server Once you have set up your phishing page, you need to start the phishing server. Enter the following command in the Weeman prompt:
Copy coderun
This will start the phishing server and you will be able to see the IP address and the port number on which the server is running.
Step 6: Launching the Phishing Page To launch the phishing page, you need to enter the IP address and the port number in your web browser. When the user enters their sensitive information on the phishing page, it will be sent to the action URL, which you set in the Weeman prompt.
Step 7: Stopping the Phishing Server Once you have collected the sensitive information, you can stop the phishing server by pressing Ctrl + C in the terminal.
In conclusion, Weeman is a powerful tool that allows you to create fake phishing pages and trick users into entering their sensitive information. With the steps discussed in this blog post, you can easily use Weeman in Kali Linux and start your phishing adventures. However, always remember to use this tool ethically and only for educational purposes.