Posts

Showing posts from June, 2025

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

🔐 Fuzzu Encryptor – Python GUI for Text & File Security | CustomTkinter App

Image
  Demo : Click Video 👇👇👇 Features : Live Demo Snapshots (Add screenshots of GUI) How it works: Text encryption/decryption File protection workflow Why this project is unique (offline + visual + secure) Download code (optional GitHub link) Related Shorts or projects by FuzzuTech Code : import customtkinter as ctk from tkinter import filedialog, messagebox from cryptography.fernet import Fernet import os # ------------------------- # Appearance and Theme # ------------------------- ctk.set_appearance_mode("dark") ctk.set_default_color_theme("blue") # ------------------------- # Main App Setup # ------------------------- app = ctk.CTk() app.title("Fuzzu Encryptor | Modern GUI") app.geometry("600x500") # ------------------------- # Load or Create Key # ------------------------- def load_or_create_key():     if os.path.exists("key.key"):         with open("key.key", "rb") as f:             return f.re...

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

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

Base64 Encryptor GUI in Python – Secure Offline Tool | FuzzuTech

Image
  Demo : Click Video 👇👇👇 🧩 Features: Python GUI App using customtkinter Base64 Encode & Decode Works 100% Offline Beginner Friendly One-click encryption tool Code included Clean UI & Hacker theme Code : import customtkinter as ctk import base64 ctk.set_appearance_mode("dark") ctk.set_default_color_theme("blue") app = ctk.CTk() app.geometry("400x400+200+200") app.title("Base64 Encrypt/Decrypt - FuzzuTech") def encrypt_text():     raw = input_text.get("1.0", "end-1c").encode("utf-8")     result = base64.b64encode(raw).decode("utf-8")     output_text.delete("1.0", "end")     output_text.insert("end", result) def decrypt_text():     try:         raw = input_text.get("1.0", "end-1c").encode("utf-8")         result = base64.b64decode(raw).decode("utf-8")         output_text.delete("1.0", "end...

Cyber Screenshot Encryptor GUI App in Python – FuzzuTech

Image
  Demo : Click Video 👇👇👇 Features: Capture screenshot with PyAutoGUI Encrypt it using cryptography (Fernet) GUI powered by customtkinter Auto-delete unencrypted file Encrypted output .png.enc format Secure, offline, lightweight utility Code : import customtkinter as ctk import pyautogui from cryptography.fernet import Fernet from PIL import Image import time import os # --- Utility Functions --- def generate_key():     key = Fernet.generate_key()     with open("secret.key", "wb") as key_file:         key_file.write(key) def load_key():     return open("secret.key", "rb").read() def capture_screenshot():     timestamp = time.strftime("%Y%m%d-%H%M%S")     filename = f"screenshot_{timestamp}.png"     screenshot = pyautogui.screenshot()     screenshot.save(filename)     return filename def encrypt_file(filename):     key = load_key()     f...

Python Login/Register GUI with SQLite – FuzzuTech Project 🔐

Image
  Demo : Click Video 👇👇👇 ✅ Description: Explore this unique Login/Register GUI app developed using Python’s customtkinter and sqlite3 . Perfect for beginners and intermediate developers who want to add a clean authentication system to their desktop apps. Features modern UI, dark mode, and switchable login/register screens. A great portfolio addition! Watch the Short and try the source code. #FuzzuTech ✅ Features : Built with customtkinter for a modern look SQLite integration for persistent local user storage Dark mode GUI Toggle between login/register forms 100% offline – no server setup needed Ideal for: portfolio projects, tools with user access, and GUI-based login screens Code : import customtkinter as ctk import tkinter.messagebox as msg import sqlite3 # Set appearance ctk.set_appearance_mode("dark") ctk.set_default_color_theme("blue") # Initialize app app = ctk.CTk() app.geometry("400x500") app.title("🔐 Fuzzu Login/Regi...