Posts

Showing posts with the label tkinter app

🧠 Chrome/Edge Password Viewer | Ethical Python GUI Tool – FuzzuTech

Image
  Demo : Click Video 👇👇👇 🛠️ Features : ✔️ Fetch saved Chrome/Edge passwords using Python   ✔️ GUI-based viewer with dark mode Treeview   ✔️ Uses SQLite3 to read local login database   ✔️ Passwords are obfuscated for demo safety   ✔️ Ideal for educational & cybersecurity awareness   Code : import os, sqlite3, shutil from tkinter import * from tkinter import ttk, messagebox from PIL import ImageTk, Image root = Tk() root.title("🧠 Chrome/Edge Password Viewer") root.geometry("700x500") root.configure(bg="#121212") style = ttk.Style() style.theme_use("clam") style.configure("Treeview",                 background="#1e1e1e",                 foreground="white",                 fieldbackground="#1e1e1e",                 rowheight=30) style.map("Treeview", background=[("s...

🔐 AES Encryptor GUI App in Python – FuzzuTech

Image
Demo : Click Video 👇👇👇 Features : Offline AES Encryption Tool GUI built with Tkinter Encrypt & Decrypt any text Open-source Python Project Hacker-style themed UI Code : import tkinter as tk from tkinter import messagebox, scrolledtext from Crypto.Cipher import AES from Crypto.Random import get_random_bytes import base64 class AESEncryptorApp:     def __init__(self, root):         self.root = root         self.root.title("AES Encryptor GUI")         self.root.geometry("500x600")         self.root.configure(bg="#121212")         self.key = get_random_bytes(16)         tk.Label(root, text="Enter Text to Encrypt:", fg="white", bg="#121212", font=("Arial", 12)).pack(pady=10)         self.input_text = scrolledtext.ScrolledText(root, width=50, height=5, font=("Arial", 10))         self.input_text.pac...