Posts

Showing posts with the label educational tools

Fake Login Page GUI in Python (Educational Purpose) – FuzzuTech

Image
  Demo : Click Video ðŸ‘‡ðŸ‘‡ðŸ‘‡ 🔹 Description: A complete Python GUI project that simulates a phishing-style login page using tkinter , including credential capture simulation and live preview GUI window. Made for cybersecurity awareness and ethical hacking education. 🔹 Features: Fake login page GUI Saves username/password input Includes live preview popup Styled dark mode Educational disclaimer Code : from tkinter import * from tkinter import messagebox # Save credentials to file def save_credentials():     username = user_entry.get()     password = pass_entry.get()     if username and password:         with open("phished_data.txt", "a") as f:             f.write(f"Username: {username}, Password: {password}\n")         messagebox.showinfo("Saved", "Credentials captured (Educational Use Only)")         user_entry.delete(0, END)     ...