Posts

Showing posts with the label GUI App

File Metadata Viewer — Python Tkinter App to Inspect Files (SHA256, EXIF, Export JSON) — FuzzuTech

Image
  Demo : Click Video 👇👇👇 Description : File Metadata Viewer — Inspect any file with a modern Tkinter GUI: SHA256, MIME, EXIF, preview & export JSON. Python + Pillow + pyperclip demo by FuzzuTech. Features : Modern dark Tkinter GUI for quick file inspection Shows file name, full path, human-readable size Displays created / modified / accessed timestamps Detects MIME type & extension Computes SHA256 hash (chunked reading) EXIF extraction & image preview (Pillow) Export metadata as pretty JSON Copy values to clipboard (pyperclip) Lightweight, single-file demo ( main.py ) + sample assets Code : """ FileMetadataViewer - Modern Tkinter GUI Author: Fuzzu Developer (add your name) Run: python main.py Requires: pillow, pyperclip """ import os import sys import json import mimetypes import hashlib import platform from datetime import datetime import tkinter as tk from tkinter import ttk, filedialog, messagebox from tkinter....

Web Request Interceptor GUI in Python – FuzzuTech

Image
  Demo : Click Video 👇👇👇 🖊️ Description: A modern Python GUI app to intercept and block suspicious URLs using regex patterns. Great for cybersecurity awareness and ethical hacking demos. Built with tkinter and ttkbootstrap by FuzzuTech. 🌟 Features: Regex-based URL blocking Request interception using requests GUI built with tkinter + ttkbootstrap Real-time header view Hacker-style dark mode interface Beginner friendly Python script Educational cybersecurity tool Code : import tkinter as tk from tkinter import ttk, messagebox import requests from ttkbootstrap import Style import re class InterceptorApp:     def __init__(self, root):         self.root = root         self.root.title("Web Request Interceptor - FuzzuTech")         self.root.geometry("600x500")         self.root.resizable(False, False)         style = Style("cyborg")  # Modern ...

USB Device History Viewer – Ethical Hacking Python GUI | FuzzuTech

Image
  Demo : Click Video 👇👇👇 Description : Discover how to reveal all USB devices ever connected to your Windows PC with a Python GUI app. FuzzuTech’s ethical hacking tool uses registry scanning to show USB history in a hacker-style interface. Features: Displays all previously connected USB devices Uses Python with winreg for registry access GUI styled in dark mode using customtkinter Easy for students, ethical hackers, and forensic investigators Code : import customtkinter as ctk import winreg def get_usb_history():     devices = []     path = r"SYSTEM\\CurrentControlSet\\Enum\\USBSTOR"     try:         reg = winreg.ConnectRegistry(None, winreg.HKEY_LOCAL_MACHINE)         key = winreg.OpenKey(reg, path)         for i in range(winreg.QueryInfoKey(key)[0]):             subkey_name = winreg.EnumKey(key, i)             ...

🧠 Cookie Stealer Simulator GUI – Ethical Hacker Tool Built in Python | FuzzuTech

Image
  Demo : Click Video 👇👇👇 Description : Learn how to simulate a cookie stealing tool in Python using a dark-themed GUI. This ethical hacker tool is built with tkinter + ttkbootstrap and includes sound + alert popups. Features : Embedded YouTube Short 2–3 Screenshots of GUI Code Snippet (above) Download Button for .py file or GitHub link Share buttons (WhatsApp, Telegram, LinkedIn) Code : import tkinter as tk from ttkbootstrap import Style from tkinter import messagebox, PhotoImage from playsound import playsound import threading import time # Initialize modern style style = Style(theme="cyborg") root = style.master root.title("Cookie Stealer Simulator") root.geometry("500x400") root.resizable(False, False) # Load Image cookie_icon = tk.PhotoImage(file="assets/cookie.png") # Header Label header = tk.Label(root, text="🍪 Cookie Stealer Simulation", font=("Helvetica", 18, "bold"), fg="#ffcc00...

🔐 Python Email Verifier GUI App | Validate Emails with SMTP | FuzzuTech Tool

Image
  Demo : Click Video 👇👇👇 Features : Build your own hacker-style Email Validator using Python. This app verifies if an email exists using SMTP — packed with GUI, threading, and clean UI via customtkinter. Perfect for developers & security tools! Code : # email_validator_gui.py import customtkinter as ctk from tkinter import messagebox import smtplib import socket import threading import requests from PIL import Image, ImageTk import io # Configure CTk ctk.set_appearance_mode("System") ctk.set_default_color_theme("blue") app = ctk.CTk() app.title("Fuzzu Email Validator & Verifier") app.geometry("500x600") # Load Icon from OpenAI DALL·E (you can replace this with local file or API) def get_dalle_image(prompt):     try:         response = requests.get("https://placehold.co/100x100/png", stream=True)         img_data = response.content         image = Image.open(io.BytesIO(img_data))     ...

Encrypt Any PDF or File Instantly – Fuzzu Encryptor GUI | Python + Fernet + customtkinter

Image
  Demo : Click Video 👇👇👇 Features: 1 Hero image of the app GUI in dark mode Embedded YouTube Short Full description of features and how-to Download button (optional zip for demo if hosting available) Social share buttons CTA: Follow FuzzuTech on YouTube, Instagram & Facebook Code : from cryptography.fernet import Fernet import customtkinter as ctk from tkinter import filedialog, messagebox import os # --- Encryption Function --- def encrypt_file(file_path):     if file_path.endswith(".enc") or file_path.endswith(".key"):         raise Exception("Please select a fresh file (not an encrypted or key file).")          key = Fernet.generate_key()     fernet = Fernet(key)     with open(file_path, "rb") as original_file:         original_data = original_file.read()          encrypted_data = fernet.encrypt(original_data)     encrypt...

Fuzzu Folder Encryptor – Encrypt & Decrypt Folders Instantly with Python GUI

Image
  Demo : Click Video 👇👇👇 💡 Features : 🔒 One-click Folder Encryption (.fuzzu format) 🧠 Uses Python’s Fernet + zipfile module 🎨 Hacker-style GUI with customtkinter 🔄 Instant Folder Restore from Encrypted File 📁 Opens output folder directly in Explorer 📴 Fully Offline – No Internet Required! Code : import os, zipfile, subprocess from cryptography.fernet import Fernet import customtkinter as ctk from tkinter import filedialog, messagebox # --- CustomTkinter Setup --- ctk.set_appearance_mode("dark") ctk.set_default_color_theme("blue") app = ctk.CTk() app.title("Fuzzu Folder Encryptor") app.geometry("600x500") app.resizable(False, False) key_file = "secret.key" # ---- Key Handling ---- def write_key():     key = Fernet.generate_key()     with open(key_file, "wb") as f:         f.write(key) def load_key():     return open(key_file, "rb").read() if not os.path.exists(key_file):     write_key() fer...

Fuzzu Video Encryptor – Python GUI to Encrypt & Decrypt Videos

Image
  Demo : Click Video 👇👇👇 Features: Embed YouTube Short 1-Click Download link to the Python script (if offering) Description section (reuse YouTube one) Keywords-rich paragraph (reuse tags) Call to Action: “Follow FuzzuTech for more insane Python GUI illusions!” Code : import tkinter as tk from tkinter import filedialog, messagebox from cryptography.fernet import Fernet import os class VideoEncryptorGUI:     def __init__(self, root):         self.root = root         self.root.title("Fuzzu Video Encryptor")         self.root.geometry("550x420")         self.root.configure(bg="#121212")         self.file_path = None         self.key_file = "fuzzu_video.key"         self.key = None         # Auto-generate or auto-load key on startup         self.auto_generate_or_load_key() ...

Fuzzu Image Encryptor | Python GUI to Encrypt & Decrypt Images Securely (Offline)

Image
  Demo : Click Video 👇👇👇 📄 Description: Build your own Image Encryption Tool in Python! With a sleek dark GUI and powerful Fernet encryption, this app secures your images in just one click. Designed for coders, tech lovers, and anyone who values privacy. Try the app, grab the code, and enhance your cyber toolkit today. 💻🔐 📝 Features: 🔐 1-click Encrypt/Decrypt for JPG/PNG 💻 Built with customtkinter + Fernet 🗝️ Save your key securely 🔥 Dark mode GUI 💯 Works fully offline Code : import customtkinter as ctk from tkinter import filedialog, messagebox from PIL import Image from cryptography.fernet import Fernet import base64 import os ctk.set_appearance_mode("dark") ctk.set_default_color_theme("blue") class ImageEncryptorApp(ctk.CTk):     def __init__(self):         super().__init__()         self.title("Fuzzu Encrypt/Decrypt Image Tool")         self.geometry("600x500")     ...

First Time Create Terminal Using Java – Hacker Style GUI App (FuzzuTech Java Project)

Image
  Demo : Click Video 👇👇👇 📝 Features: Create a hacker-style terminal with green-on-black animation Built with JTextArea , JButton , and Thread No external libraries, fully offline Ideal for beginner Java devs and cyber project fans Full source code included! Code : import javax.swing.*; import java.awt.*; import java.awt.event.*; public class HackingGUI extends JFrame {     JTextArea terminal;     JButton startBtn;     public HackingGUI() {         setTitle("Fuzzu Hacker Access Terminal");         setSize(600, 400);         setDefaultCloseOperation(EXIT_ON_CLOSE);         setLocationRelativeTo(null);         getContentPane().setBackground(Color.black);         setLayout(new BorderLayout());         terminal = new JTextArea();         terminal.setBackground(Color.black); ...

🔐 VaultBox – Lock/Unlock Any File in 1 Click with Python GUI | FuzzuTech

Image
Demo : Click Video 👇👇👇 Features: Instant file encryption & decryption Auto log tracking Beginner-friendly CustomTkinter UI Works offline 100% open source Code : import customtkinter as ctk from tkinter import filedialog import os, json from cryptography.fernet import Fernet from datetime import datetime ctk.set_appearance_mode("dark") ctk.set_default_color_theme("blue") KEY_FILE = "vault.key" LOG_FILE = "access_log.json" # Generate key if not exists if not os.path.exists(KEY_FILE):     with open(KEY_FILE, "wb") as f:         f.write(Fernet.generate_key()) with open(KEY_FILE, "rb") as f:     key = f.read() fernet = Fernet(key) if not os.path.exists(LOG_FILE):     with open(LOG_FILE, "w") as f:         json.dump([], f) class VaultBox(ctk.CTk):     def __init__(self):         super().__init__()         self.title("🔒 VaultBox - File Locker") ...

Main Channel Down, But This AI Face Lock App Might Revive Everything – FuzzuTech's Big Push!

Image
  Demo : Click Video 👇👇👇 📝 Features: Real-time AI detection GUI built with Tkinter Works on any PC Built for tech lovers & Python learners Includes full source code (link in YT comments) Code : import tkinter as tk from tkinter import messagebox import cv2 from PIL import Image, ImageTk import threading class FaceLockApp:     def __init__(self, root):         self.root = root         self.root.title("Face Lock System")         self.root.geometry("700x500")         self.root.configure(bg="#121212")         self.root.resizable(False, False)         # Title         self.title_label = tk.Label(root, text="🔒 Face Lock System", font=("Segoe UI", 24, "bold"), fg="#00fff7", bg="#121212")         self.title_label.pack(pady=20)         # Video frame border     ...