Posts

Detect SQL Injections Instantly with Python GUI – FuzzuTech

Image
  Demo : Click Video 👇👇👇 📄 Features: GUI App using Python & CustomTkinter Detects SQL Injection using Regex Instant detection for safe vs malicious queries Offline, lightweight, and beginner-friendly Great for coding learners, students, and security pros Code : import customtkinter as ctk import re import pyperclip # --- Configure appearance --- ctk.set_appearance_mode("dark") ctk.set_default_color_theme("blue") app = ctk.CTk() app.geometry("550x500") app.title("🔒 Fuzzu SQL Injection Detector") app.resizable(False, False) # --- SQL Injection Patterns --- suspicious_patterns = [     r"(--|\|\|)",                      # SQL comments     r"(' OR '1'='1|\" OR \"1\"=\"1)",  # classic injection     r"(DROP|INSERT|DELETE|UPDATE)\s+\w+\s+.*--",     r"(UNION\s+SELECT)",     r"(' OR 1=1|\" OR 1=1)",     r"(OR\s+\d+=\d+)", ] # ---...

GIF Encryptor/Decryptor App 🔐 | FuzzuTech Python GUI

Image
  Demo : Click Video 👇👇👇 🔸 Post (Intro): Experience a new level of Python file security with this GIF Encryptor/Decryptor App built using tkinter and Fernet . With a sleek GUI and real encryption logic, this tool brings cybersecurity into your hands. Encrypt any .gif with just one click! 🔸 Features: 🔐 Encrypt & decrypt GIF files securely 🧠 Powered by Fernet key-based encryption 🎨 Dark mode GUI using tkinter 💾 100% Offline 🧑‍💻 Ideal for Python GUI project portfolios Code : import tkinter as tk from tkinter import filedialog, messagebox from cryptography.fernet import Fernet import os import shutil class GIFEncryptorDecryptorApp:     def __init__(self, root):         self.root = root         self.root.title("🔐 GIF Encrypt / Decrypt")         self.root.geometry("600x400")         self.root.configure(bg="#1e1e1e")         self.key_entry =...

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 Audio Encryptor – Secure Your Voice with Python GUI App 🔐🎵

Image
  Demo : Click Video 👇👇👇 🌟 Features: Encrypt any audio file to secure .fuzzu format Decrypt back with one click using saved Fernet key Built with Python, customtkinter , and cryptography Offline tool – no internet needed Beginner-friendly code for developers Code : import customtkinter as ctk from tkinter import filedialog, messagebox from cryptography.fernet import Fernet import os # App Appearance ctk.set_appearance_mode("dark") ctk.set_default_color_theme("blue") class AudioEncryptorApp(ctk.CTk):     def __init__(self):         super().__init__()         self.title("Fuzzu Audio Encrypt/Decrypt Tool")         self.geometry("600x500")         self.resizable(False, False)         self.key = Fernet.generate_key()         self.cipher = Fernet(self.key)         self.build_gui()     def build_gui(self):...

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