Posts

Showing posts from July, 2025

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

APK Strings Extractor GUI – FuzzuTech | Python Ethical Hacking Tool

Image
  Demo : Click Video 👇👇👇 🧾 Description : Discover hidden strings, suspicious URLs, or encoded data inside APK files with this custom-built Python GUI tool. The "APK Strings Extractor – FuzzuTech" makes it easy for ethical hackers, developers, and cybersecurity enthusiasts to analyze APK content using a dark-themed tkinter interface. Perfect for quick analysis & reporting. Free, open-source, and beginner-friendly! 🧩 Features : 🔍 Scan & Extract strings from .apk files 📦 Supports .xml , .json , .arsc , .dex , .txt 🎨 Sleek Dark Theme GUI with tkinter 📁 Save extracted results to .txt 🧠 Regex-based smart string capture 💻 Built with Python | Open Source Code : import tkinter as tk from tkinter import filedialog, messagebox, scrolledtext import re import zipfile import os class APKStringExtractor:     def __init__(self, root):         self.root = root         self.root.title("APK Strings Extractor...

React Native Orb Loader – Glow UI Animation | FuzzuTech

Image
  Demo : Click Video 👇👇👇 🌟 Featured : 🔁 Looping Orb Spin Animation 💡 Typewriter-style text 🌈 Gradient overlays with glow effects 📱 Ideal for splash screens 🔧 Tools Used: React Native, Animated API, Easing, JS, CSS-like styles Code : OrbLoader.js import React, { useRef, useEffect, useState } from 'react'; import { View, StyleSheet, Animated, Easing, Dimensions, Text, } from 'react-native'; const { width } = Dimensions.get('window'); const SIZE = 250; const RADIUS = SIZE / 2; const OrbLoader = () => { const rotateAnim = useRef(new Animated.Value(0)).current; const pulseAnim = useRef(new Animated.Value(1)).current; const [displayText, setDisplayText] = useState('Loading...'); const fullText = 'Loading...'; useEffect(() => { // Rotation animation Animated.loop( Animated.timing(rotateAnim, { toValue: 1, duration: 4000, easing: Easing.linear, useNativeD...

Python GUI Spam Filter – Detect Spam Words in Text | FuzzuTech

Image
  Demo : Click Video 👇👇👇 📄 Features : Spam word detection using Python tkinter GUI interface with dark theme Custom keyword file support ( spam_keywords.txt ) Real-time text scan Useful for message monitoring tools Code : import tkinter as tk from tkinter import messagebox class SpamFilterApp:     def __init__(self, root):         self.root = root         self.root.title("🛡️ Anti-Spam Keyword Filter")         self.root.geometry("500x400")         self.root.configure(bg="#121212")         self.keywords = self.load_keywords()         tk.Label(root, text="📝 Enter Your Message:", fg="white", bg="#121212", font=("Segoe UI", 12)).pack(pady=10)         self.text_entry = tk.Text(root, height=8, width=50, font=("Segoe UI", 11), bg="#1e1e1e", fg="white", insertbackground="white")         self.text_e...

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

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

🛡️ Fuzzu Ransomware File Shield – Real-Time Folder Monitor in Python GUI

Image
  Demo : Click Video 👇👇👇 ✍️ Description : FuzzuTech introduces a real-time ransomware detector app made in Python. It uses tkinter and watchdog to alert users instantly when suspicious file types are dropped in the monitored folder. Ideal for cybersecurity learners, ethical hackers, and GUI developers. No antivirus? No problem. Let Fuzzu Folder Shield protect your system. 🧩 Features : Real-time file monitoring using watchdog Alert popups for suspicious file types Beautiful dark-mode GUI Built in Python with threading Folder protection without antivirus Code : import tkinter as tk from tkinter import messagebox from tkinter import ttk from watchdog.observers import Observer from watchdog.events import FileSystemEventHandler import threading import os import time # ========== Custom Handler ========== class RansomwareDetector(FileSystemEventHandler):     def __init__(self, app):         self.app = app     def on_creat...

Live IP & Port Tracker with AI Threat Score – Python GUI | FuzzuTech

Image
  Demo : Click Video 👇👇👇 🔹 Description : Track any IP address with AI Threat Score & real-time port scanning using this Python GUI app. Built with tkinter, socket & threading. 🔹 Features : IPv4 Address Validation AI-Based Threat Score Generator Port Scanner (20–1024) Threaded Fast Scan Custom Dark Mode GUI (tkinter) Python Code GUI App – 100% Open Source Lightweight Ethical Hacking Utility Code : import tkinter as tk from tkinter import ttk, messagebox import socket import threading import random import re # Simulate AI threat score based on IP def get_threat_score(ip):     random.seed(sum([int(x) for x in ip.split('.')]))     return random.randint(10, 99) # Scan common ports def scan_ports(ip, output_box):     output_box.insert(tk.END, f"\n[🔍 Scanning Ports on {ip}...]\n")     for port in range(20, 1025):         try:             with socket.socket(soc...

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

All-in-One Pentester Toolkit in Python – FuzzuTech GUI App (Port Scanner + XSS + Brute Force)

Image
  Demo : Click Video 👇👇👇 📝 Features: 🧠 Educational Ethical Hacking Tool 💻 GUI with Port Scanner, XSS Detector, Brute Force Demo 🎯 Built with Python's tkinter , requests , socket ⚙️ Real-time functionality | Dark Mode UI 🔓 Open-source | Ideal for Beginners & Students 📥 Download + Demo + Source Code Coming Soon Code : import tkinter as tk from tkinter import ttk, messagebox import socket import requests import threading # === GUI SETUP === app = tk.Tk() app.title("All-in-One Pentester Toolkit - FuzzuTech") app.geometry("600x500") style = ttk.Style(app) style.theme_use("clam") # Header Label header = ttk.Label(app, text="🔐 Pentester Toolkit GUI", font=("Helvetica", 18, "bold"), foreground="#1f6aa5") header.pack(pady=10) # === FUNCTIONS === # Port Scanner def scan_ports():     output_text.delete(1.0, tk.END)     host = port_host_entry.get()     try:         ip = socket.gethostbyname(ho...

Ethical WiFi Brute Force Simulation in Python – FuzzuTech GUI Tool

Image
  Demo : Click Video 👇👇👇 📝 Description : Explore how WiFi brute force attacks work in this ethical simulation built with Python tkinter . This GUI app lets you input an SSID, load a wordlist, and attempt password cracking in a visual and educational way. Learn how brute force logic works under the hood—perfect for ethical hackers and Python learners. Created by FuzzuTech. 📌 Features : ✔️ Python tkinter GUI App ✔️ Fake SSID Brute Force Simulation ✔️ Custom Wordlist Integration ✔️ Ethical/Educational Only ✔️ Dark Mode Hacker UI Code : import tkinter as tk from tkinter import filedialog, messagebox import time def simulate_brute_force():     ssid = ssid_entry.get()     if not ssid or not wordlist_path.get():         messagebox.showerror("Error", "Please enter SSID and select a wordlist.")         return     with open(wordlist_path.get(), 'r') as file:         passwords =...

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

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

🔍 APK Analyzer GUI Tool in Python – Scan Android Files Instantly | FuzzuTech

Image
  Demo : Click Video 👇👇👇 Code : import tkinter as tk from tkinter import filedialog, messagebox import zipfile import os def analyze_apk(file_path):     info = ""     try:         with zipfile.ZipFile(file_path, 'r') as zip_ref:             for name in zip_ref.namelist():                 if "AndroidManifest.xml" in name:                     info += f"Manifest Found: {name}\n"                 if "META-INF/" in name:                     info += f"Signature Info: {name}\n"         info += f"\nAPK Size: {os.path.getsize(file_path) / 1024:.2f} KB"         return info     except Exception as e:         return str(e) def browse_file():     path = filedialog...

XSS Payload Tester – Python GUI Tool by FuzzuTech (Tkinter GUI)

Image
  Demo : Click Video 👇👇👇 📋 Features: - Built using Python & Tkinter   - Detects XSS JavaScript injection   - GUI interface for input testing   - Warning system via message box   - Great for students, devs, cyber learners Code : import tkinter as tk from tkinter import messagebox xss_payloads = [     "<script>alert('XSS')</script>",     "<img src=x onerror=alert('XSS')>",     "<svg/onload=alert('XSS')>",     "<body onload=alert('XSS')>",     "'><script>alert('XSS')</script>" ] def check_xss():     user_input = entry.get()     for payload in xss_payloads:         if payload.lower() in user_input.lower():             result_label.config(text="⚠️ Potential XSS Detected!", fg="red")             messagebox.showwarning("Alert!", "This input may ...

🔐 FuzzuTech – Steganography Tool GUI | Hide Messages in Images (Python App)

Image
  Demo : Click Video 👇👇👇 ✨ Features : Encode & decode hidden messages 100% offline Dark mode GUI PNG support Built with Python PIL + customtkinter Code : import customtkinter as ctk from tkinter import filedialog from PIL import Image import io ctk.set_appearance_mode("dark") ctk.set_default_color_theme("blue") app = ctk.CTk() app.geometry("500x600") app.title("Steganography Tool – FuzzuTech") def encode_image():     filepath = filedialog.askopenfilename()     if not filepath: return     img = Image.open(filepath)     message = text_entry.get("1.0", "end-1c")     encoded = img.copy()     binary_msg = ''.join(format(ord(i), '08b') for i in message)     binary_msg += '1111111111111110'  # EOF marker     pixels = list(encoded.getdata())     for i in range(len(binary_msg)):         r, g, b = pixels[i]         r = (r & ~1) ...

🧠 File Hash Checker GUI – MD5, SHA1, SHA256 in Python (FuzzuTech)

Image
  Demo : Click Video 👇👇👇 📌 Description: A beautifully designed file hash calculator built using Python's tkinter , styled with modern colors, and capable of instantly generating MD5, SHA1, and SHA256 hashes of any file. It's perfect for checking file integrity or spotting tampered software. Export results easily and verify like a pro. Designed by FuzzuTech to help creators, coders, and digital forensics enthusiasts. 📌 Features: 💻 Built with Python's tkinter 🔐 Supports MD5, SHA1, SHA256 hashing 🧾 Export hash results as .txt 🌙 Modern Dark Mode UI ⚡ Instant file verification tool 🛡 Designed for hackers, coders, sysadmins 📦 Lightweight & Offline Code : import tkinter as tk from tkinter import filedialog, messagebox import hashlib, os # Stylish Colors BG_COLOR = "#1e1e2f" BTN_COLOR = "#03dac6" TEXT_COLOR = "#ffffff" FONT = ("Segoe UI", 11) def hash_file(file_path, algo):     h = hashlib.new(algo)     wi...

How I Coded an Invoice PDF Generator GUI in 60 Seconds (Python Tkinter + FPDF)

Image
  Demo : Click Video 👇👇👇 Code : from tkinter import * from tkinter import ttk, messagebox from fpdf import FPDF import datetime class InvoiceApp:     def __init__(self, root):         self.root = root         self.root.title("Invoice Generator")         self.root.geometry("800x600")         self.root.configure(bg="#f0f4f7")         self.items = []         self.setup_ui()     def setup_ui(self):         title = Label(self.root, text="INVOICE GENERATOR", font=("Helvetica", 18, "bold"), bg="#2b6777", fg="white", pady=10)         title.pack(fill=X)         frame = Frame(self.root, bg="white", padx=20, pady=10)         frame.pack(pady=10, padx=20, fill=X)         Label(frame, text="Item", font=("Helvetica", 12), bg="white").grid(row=0, column=...