Skip to main content

Posts

PhishMailer – Generate Professional Phishing Alert Templates

  PhishMailer – Generate Professional Phishing Alert Templ  November 2020     Soical Engineering Tweet Share Share Pin 1 Hey folks, in this tutorial we are going to talk about a different type of phishing tool that can get some better results by coordinating with social engineering. This is an open source tool that is coded in python language named “ PhishMailer “. Usually we get some error on multiple attempts of login or forgotten password and it creates the same alert phishing page to get some useful information which can lead to a phishing attack by placing malicious phishing URL on that phishing page. How it’s possible let’s see. Let’s take a look    !! Installation The installation of this tool is quite simple as we should have only one python tool and we can easily use this tool. Now we will donlwoad this tool from github then go to the directory and directly execute this tool. 1 2 3 git clone https : //www.github.com/BiZken/PhishMailer.git cd Phish...
Recent posts

Embed Payload (Exe) into a PDF Documents – EvilPDF

 Hey folks, today we are going to talk about the tool that can easily add malicious payloads within the .PDF extension files and after which you can easily access any system. As we know it is prohibited to execute malicious payloads inside the window defender system, hence we will send our payload through the PDF files.   Environment Kali Linux = Attacker Window 10 = Victim ( Tested On ) Lets take a look 🙂 !! EvilPDF The EvilPDF tool is specifically designed to embed payloads inside PDF files. It is an open source tool hosted on the github page that we will download using the wget command. git clone https://github.com/thelinuxchoice/evilpdf cd evilpdf 1 2 git clone https://github.com/thelinuxchoice/evilpdf cd evilpdf It require some additional features that we can download using the following command. python -m pip install pypdf2 1 python -m pip install pypdf2 Now we can use this tool using the given command. python evilpdf.py 1 python evilpdf.py In the image below you have t...

Embed Malicious URL in Popular Websites

  Embed Malicious URL in Popular website  5 June 2020     Ethical Hacking  /  Exploiting Tools Tweet Share Share Pin Hey Folks, in this tutorial we will show you that how you can embed your malicious URL in popular websites such as :  Youtube, Facebook and Google  etc. These kind of techniques are useful during the social engineering attacks because we can embed our malicious URLs in well known domains and send to the victim. Reuirements Kali Linux  = Attacker Lets take a look   !! URLCADIZ   TOOL It is open source tool that is hosted on github page. This allow an attacker to embed his malicious code or URL in well known domains. To do our work, we have to download it from the github page. 1 git clone https : //github.com/PerezMascato/URLCADIZ.git Install the requirements using the pip command and go to the directory of this tool. 1 2 3 sudo pip3 install pyshorteners cd URLCADIZ python3 URLCADIZ . py It provide us various feat...