Posts

Showing posts with the label Tkinter GUI

Live Stalker Detector – Find Who Is Tracking Your Phone & PC (Python Hacker GUI)

Image
  Demo : Click Video 👇👇👇 Features : • Live spyware detection • Mic & Webcam alert • Internet spying detection • Hidden background apps scanner • Real-time hacker style GUI • Lightweight & fast Code : import customtkinter as ctk import psutil import socket import threading import time from datetime import datetime ctk.set_appearance_mode("dark") ctk.set_default_color_theme("green") app = ctk.CTk() app.geometry("500x650") app.title("FUZZUTECH LIVE STALKER DETECTOR") log_box = None def log(msg):     global log_box     log_box.configure(state="normal")     log_box.insert("end", f"[{datetime.now().strftime('%H:%M:%S')}] {msg}\n")     log_box.see("end")     log_box.configure(state="disabled") def scan_background_apps():     while True:         for proc in psutil.process_iter(['pid','name']):             if "cam" in proc.info['name'].lower() or ...

Fake Screenshot Detector in Python | Cyber Security GUI Project

Image
  Demo : Click Video 👇👇👇 ⭐ Features : Detects edited screenshots Reads hidden image metadata Hacker-style GUI Beginner-friendly Python project Real-life scam awareness Code : import tkinter as tk from tkinter import filedialog from PIL import Image, ImageTk, ExifTags # --------------------------- # Main Window # --------------------------- root = tk.Tk() root.title("Fake Screenshot Detector") root.geometry("520x420") root.configure(bg="#0b0b0b") root.resizable(False, False) # --------------------------- # Global variables # --------------------------- img_label = None # --------------------------- # Functions # --------------------------- def analyze_image(path):     try:         img = Image.open(path)         exif = img.getexif()         metadata = {}         for tag_id, value in exif.items():             tag = ExifTags.TAGS.get(tag_id, tag...

Your Webcam & Microphone Might Be Active Without You Knowing (Python GUI Tool)

Image
  Demo : Click Video 👇👇👇 ⭐ Features : Modern hacker-style GUI Python CustomTkinter Cyber security awareness Webcam & microphone monitoring simulation Live security logs Beginner-friendly code Code : import customtkinter as ctk import random import time import threading # ----------------- APP CONFIG ----------------- ctk.set_appearance_mode("dark") ctk.set_default_color_theme("dark-blue") APP_TITLE = "ShadowWatch • Cyber Security Monitor" APP_SIZE = "600x520" # ----------------- MAIN APP ----------------- class ShadowWatchApp(ctk.CTk):     def __init__(self):         super().__init__()         self.title(APP_TITLE)         self.geometry(APP_SIZE)         self.resizable(False, False)         self.running = True         self.build_ui()         self.start_simulation()     # ----------------- UI ---...

Python Cyber Surveillance Tool – Monitor Webcam & Microphone Activity

Image
   Demo : Click Video 👇👇👇 Features Section: ✔ Modern Cyber GUI ✔ Webcam & Mic risk simulation ✔ Beginner-friendly Python project ✔ Ethical hacking awareness ✔ Full source code included Code : import customtkinter as ctk import random import time def fake_scan():     status.set("Scanning system...")     app.update()     time.sleep(2)     threat = random.choice([         "Webcam accessed by unknown process",         "Microphone active in background",         "No threat detected",         "Screen capture attempt blocked"     ])     status.set(threat) ctk.set_appearance_mode("dark") app = ctk.CTk() app.geometry("600x400") app.title("Cyber Surveillance Monitor") status = ctk.StringVar(value="Idle") ctk.CTkLabel(app, text="🛡️ CYBER SURVEILLANCE TOOL", font=("Arial", 20)).pack(pady=20) ctk.CTkLabel(app, textvariable=st...

🔥 Fuzzu Ethical Port Scanner – Python GUI App to Scan Open Ports Fast

Image
  Demo : Click Video 👇👇👇 Description: Fuzzu Ethical Port Scanner is a Python GUI app that scans open ports on any IP/domain using threading for fast performance. Designed in a stylish dark mode with tkinter + socket module. Perfect for cybersecurity students, ethical hackers, and Python enthusiasts. Created by FuzzuTech. Learn, build, and secure! Features: Threaded port scanning from 1–1024 Fast GUI display with Treeview Dark mode design (hacker-style) Error handling for invalid hosts Built using core Python libraries only Code : import socket import threading import tkinter as tk from tkinter import ttk, messagebox from datetime import datetime # -------------------- SCAN FUNCTION -------------------- def scan_port(host, port, tree):     s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)     s.settimeout(0.5)     try:         con = s.connect((host, port))         tree.insert("", "end", ...

AI Malware Scanner GUI – Python App to Detect Suspicious Files | FuzzuTech

Image
  Demo : Click Video 👇👇👇 🔹 Intro : Want to build your own AI-powered malware scanner? 💻 This Python GUI project uses a machine learning model to classify files based on their hash and size. With a hacker-style dark GUI and real-time detection, this project is perfect for ethical hacking and cybersecurity enthusiasts. 🔹 Features : - 💡 Uses AI (Random Forest) to scan .exe, .pdf, .zip files - ⚙️ Built with Python, customtkinter, and hashlib - 🔐 Classifies files as Safe or Suspicious - 🧠 Smart feature extraction from file size & SHA256 hash - 🌙 Modern dark-mode GUI (desktop style) - 🎯 Ideal for cybersecurity learners & ethical hackers Code : import os import customtkinter as ctk from tkinter import filedialog from sklearn.ensemble import RandomForestClassifier import joblib import hashlib # 1. Create Dummy Model (if not exists) MODEL_PATH = "model/malware_classifier.joblib" def create_dummy_model():     os.makedirs("model", exist_ok=True)    ...

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

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

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

🎲 Launch Random App with Python | FuzzuTech GUI Project

Image
  Demo : Click Video 👇👇👇 💡 Features : Offline Python GUI Project Automate Daily Tasks with Fun Perfect for Beginners and Hobby Coders Fully Customizable Path List Fun + Practical Use Case Code : import tkinter as tk import random import os from tkinter import messagebox import customtkinter as ctk # Configure appearance ctk.set_appearance_mode("System") ctk.set_default_color_theme("blue") # List of app paths (Windows Example) app_paths = [     "C:\\Windows\\System32\\notepad.exe",     "C:\\Windows\\System32\\calc.exe",     "C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe",     "C:\\Windows\\System32\\mspaint.exe",     "C:\\Program Files\\Corel\\CorelDRAW Graphics Suite 2021\\Programs64\\CorelDRW.exe" ] # Function to launch random app def launch_random_app():     try:         random_app = random.choice(app_paths)         os.startfile(random_app) ...

🔥 Generate Viral Instagram Captions with openai – Python GUI App (Offline Tool) | FuzzuTech

Image
  Demo : Click Video 👇👇👇 ✅ Features: YouTube embedded short Code snippet screenshot (main window) Button: “Download Python Code” (optional link to GitHub/GDrive) SEO Meta: Python GUI Caption Tool, AI Instagram Caption Generator, Offline Caption App Code : import tkinter as tk import customtkinter as ctk import random # import openai  # Uncomment this line if you want to use OpenAI # openai.api_key = "your-api-key"  # Add your OpenAI API key here if needed # Predefined topic-based captions (fallback) captions = {     "travel": [         "Wander often, wonder always 🌍✈️",         "Collecting memories, not things ✨",         "New places, new faces 🌄📸"     ],     "food": [         "Foodie vibes only 🍔🍕",         "Good food = Good mood 😋",         "In a serious relationship with food ❤️"     ],...

🔐 PDF Password Protector Python App – FuzzuTech | Offline GUI with PyPDF2 + CustomTkinter

Image
  Demo : Click Video 👇👇👇 📌 Description (Blogger Body): Want to secure your PDF files like a pro hacker? Check out this stylish PDF Password Protector built using Python , customtkinter , and PyPDF2 . This offline app lets you select a PDF, enter a password, and instantly lock it—all in one clean dark-themed GUI. Perfect for coders, cybersecurity learners, and productivity lovers. Watch the full video demo and download the code on our blog now. 🚀 Built by FuzzuTech – Bringing viral GUI projects to your screen! 📌 Features: Full dark mode GUI using customtkinter Select & lock PDF with strong password Offline & secure (no data upload) Built in Python using PyPDF2 , filedialog , and messagebox Ideal for developers, students, or cyber tool enthusiasts Code : import customtkinter as ctk from tkinter import filedialog, messagebox import PyPDF2 # Configure appearance ctk.set_appearance_mode("dark") ctk.set_default_color_theme("blue") # Main a...

Python IP Tracker App with GUI | Track IP Location Real-Time! (Working Project)

Image
Python IP Tracker App 🔥   Location, ISP, Country, City — sab real-time milta hai! Ab tum bhi bana sakte ho yeh amazing GUI app – full source code available hai 👇   Check the video & start building your own!    Demo : Click Video 👇👇👇 Code : import tkinter as tk from tkinter import messagebox, scrolledtext import requests def track_ip(ip):     try:         url = f"http://ip-api.com/json/{ip}"         response = requests.get(url)         data = response.json()         if data['status'] == 'success':             result = (                 f"IP: {data['query']}\n"                 f"Country: {data['country']} ({data['countryCode']})\n"                 f"Region: {data['regionName']} ({data['region']})\n"   ...

Modern MS Paint in Python using Tkinter - Advanced Drawing App

Image
Demo : Click Video 👇👇👇 Description: Python Tkinter se apna khud ka MS Paint banao! 🖌 Yeh advanced project zaroor try karo! 🔥 Content: 🔥 Python Tkinter se MS Paint banane ka best project! Aaj hum ek Modern MS Paint banayenge Python Tkinter ka use karke. Yeh app brush, eraser, shapes, color picker, save, open aur clear canvas jaise features ke sath aata hai. Aap isse customize bhi kar sakte ho! 🎨 🚀 Features: ✔️ Brush & Eraser Tool ✔️ Rectangle, Circle, & Line Drawing ✔️ Color Picker ✔️ Save & Open Image Support ✔️ Clear Canvas Function Code : import tkinter as tk from tkinter import filedialog, colorchooser, messagebox from PIL import Image, ImageDraw, ImageTk import os class ModernMSPaint:     def __init__(self, root):         self.root = root         self.root.title("MS Paint Advanced")         self.root.geometry("1200x700")                ...