title | description |
---|---|
Phishing ⚙️ |
Learn about phishing, its purpose, and how to use it responsibly. |
Phishing is a form of ⚙️ social engineering where an attacker employs deceptive tactics to manipulate individuals into divulging sensitive information or installing malicious software, such as ransomware, on their systems.
Phishing falls under the domain of ⚙️ social engineering, where attackers exploit human psychology to deceive people into actions they wouldn't typically perform, often unknowingly causing harm.
Hackers resort to phishing to gain access to users' credentials for websites and more. An example tool for carrying out phishing attacks is ⚙️ Zphisher.
To begin, open your terminal in Kali Linux and follow these steps to obtain ⚙️ Zphisher from its GitHub repository:
- Clone the repository with this command:
git clone --depth=1 https://github.com/htr-tech/zphisher.git
Result:
Cloning into 'zphisher'...
[Additional details on cloning]
- Change your current directory to the 'zphisher' directory:
cd zphisher
Result:
Directory changed to 'zphisher'
- Execute the script with the following command:
bash zphisher.sh
Result:
[+] Installing required packages...
[Additional installation details]
You will be presented with Zphisher's interactive menu for selecting your target platform and preferred phishing method.
When the menu appears, you can choose your target platform and the specific phishing method. Suppose we select '3' for Google and '2' for "Gmail New Login Page." Then, you'll be prompted to choose the service for generating the phishing link. In this example, we use localhost.
This link is only accessible by you and should return:
[Zphisher logo]
[-] Successfully Hosted at : http://127.0.0.1:8080
[-] Waiting for Login Info, Ctrl + C to exit...
The file in question is a .sh file, signifying that it's a shell script using the bash scripting language. This is why we execute it using the bash command.