Phishing βοΈ
Understanding Phishing π£
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 in the World of Hacking π
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.
The Motive Behind Phishing π§βπ»
Hackers resort to phishing to gain access to usersβ credentials for websites and more. An example tool for carrying out phishing attacks is βοΈ Zphisher.
Installing Zphisher from GitHub π
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.
Using Zphisher: An Example π―
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...
Why Use Bash for Running the File? π
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.