Posts

Showing posts with the label dark mode gui

💻 Fake Windows Format GUI in Python – FuzzuTech Project

Image
  Demo : Click Video ðŸ‘‡ðŸ‘‡ðŸ‘‡ Post Features: 🌟 Embed YouTube Short 📸 Screenshots of GUI (optional) 📄 Code Snippet/Download Link (if desired) 🔗 Link to GitHub (optional) ⚠️ Disclaimer: This project is for educational purposes only. Code : import tkinter as tk from tkinter import ttk import time import threading # ---- Format Simulation Function ---- def start_formatting():     start_btn.config(state="disabled")     status_label.config(text="Formatting in progress...\nDo not turn off your computer.", fg="white")     for i in range(101):         progress_bar["value"] = i         percent_label.config(text=f"{i}% Completed")         time.sleep(0.07)         root.update_idletasks()     status_label.config(text="Format Complete.\nRestarting system...", fg="lime")     percent_label.config(text="Done ✔") # ---- Thread Wrapper ---- def thread...

Link Bait Builder – Python GUI App for Masking URLs | FuzzuTech Awareness Tool

Image
  Demo : Click Video ðŸ‘‡ðŸ‘‡ðŸ‘‡ Code : import tkinter as tk from tkinter import messagebox, ttk import pyperclip # Modern Stylish Theme Colors BG_COLOR = "#1e1e2f" FG_COLOR = "#ffffff" BTN_COLOR = "#00c896" ENTRY_COLOR = "#2c2c3e" FONT = ("Segoe UI", 11) def generate_mask():     original = original_url.get().strip()     fake = fake_url.get().strip()     if not original or not fake:         messagebox.showwarning("Missing Fields", "Please fill both fields.")         return     original_clean = original.replace("https://", "").replace("http://", "")     masked_url = f"https://{fake}@{original_clean}"     result_field.config(state="normal")     result_field.delete(0, tk.END)     result_field.insert(0, masked_url)     result_field.config(state="readonly") def copy_result():     pyperclip.copy(result_field.get())     messagebox.showinfo("...

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)     ...

🚀 Startup Program Viewer – Detect Auto-Run Apps in Windows | Python GUI by FuzzuTech

Image
  Demo : Click Video ðŸ‘‡ðŸ‘‡ðŸ‘‡ 🔗 Description: Introducing "Startup Program Viewer" by FuzzuTech – a Python GUI tool to instantly view and analyze programs that auto-run on Windows. Whether you're optimizing boot time, debugging startup issues, or simply curious what's hiding in your startup folder, this tool is your perfect companion. With hacker-style GUI and dark mode, it's both stylish and powerful. Try it now and share with your tech buddies! 📌 Features : Built using Python & Tkinter GUI with Dark Mode Interface Detects all startup programs (WMIC-based) Boosts system speed by identifying auto-run apps One-click scan for beginners & coders Works only on Windows Code : import tkinter as tk from tkinter import ttk, messagebox import subprocess import platform # Initialize GUI root = tk.Tk() root.title("🧠 Startup Program Viewer - FuzzuTech") root.geometry("600x500") root.config(bg="#121212") root.resizable(Fa...