Posts

Showing posts with the label Tkinter Projects

LIVE Device Clone Detector – Python Cyber Security GUI Tool (Hacker Style)

Image
  Demo : Click Video 👇👇👇 Features : • Live remote desktop detection • Spy port scanner • Screen mirroring detection • Clone risk calculator • Hacker style dashboard • Modern Tkinter GUI • Educational cyber awareness tool Code : import customtkinter as ctk import psutil import socket import threading import random import time ctk.set_appearance_mode("dark") ctk.set_default_color_theme("dark-blue") app = ctk.CTk() app.title("LIVE DEVICE CLONE DETECTOR - FuzzuTech") app.geometry("830x520") app.resizable(False, False) risk_value = 0 # ---------- SCAN FUNCTIONS ---------- def scan_remote_desktop():     return any(p.name().lower() in ["mstsc.exe", "teamviewer.exe", "anydesk.exe"] for p in psutil.process_iter()) def scan_ports():     suspicious_ports = [22, 3389, 5900, 4444, 8080]     found = []     for c in psutil.net_connections(kind="inet"):         if c.laddr and c.laddr.port in suspicious_ports:    ...

🛰️ Network Map Visualizer Python App – Scan Your WiFi in 1 Click | FuzzuTech

Image
  Demo : Click Video 👇👇👇 📄 Blogger Description: Learn how to create your own Network Map Visualizer using Python! 🛰️ This app shows all connected devices on your local network – with real-time scanning and a modern dark-themed GUI. Built using tkinter , socket , and psutil , this tool is perfect for ethical hackers and Python learners looking to explore network interfaces. Watch the full demo in our short video! 🔥 🔗 Subscribe to FuzzuTech on YouTube for more GUI + cybersecurity tools. 💡 Features: Scan all devices connected to your local network Displays IP address, Hostname & Interface Built with tkinter , socket , psutil Dark mode GUI with interactive buttons Great for ethical hackers, students, IT pros Developed by FuzzuTech Code : import tkinter as tk from tkinter import ttk, messagebox import socket import psutil import threading def get_network_devices():     devices = []     for interface, addrs in psutil.net_if_addrs...

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

💽 Disk Space Analyzer GUI App in Python – FuzzuTech | Analyze Your Drives with Live Pie Charts!

Image
  Demo : Click Video 👇👇👇 Code : import customtkinter as ctk import matplotlib.pyplot as plt from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg import psutil import shutil # Appearance ctk.set_appearance_mode("System") ctk.set_default_color_theme("blue") # GUI app = ctk.CTk() app.title("Disk Space Analyzer - FuzzuTech") app.geometry("600x500") app.resizable(False, False) # Title title = ctk.CTkLabel(app, text="💾 Disk Space Analyzer", font=("Arial Black", 22)) title.pack(pady=20) # Frame for pie chart frame = ctk.CTkFrame(app, width=600, height=400) frame.pack(pady=10) # Pie chart generation def show_pie_chart():     for widget in frame.winfo_children():         widget.destroy()     partitions = psutil.disk_partitions()     labels, sizes = [], []     for part in partitions:         try:             usage = shutil.disk_usage(part.mountpoint)    ...

Typing Animation GUI – FuzzuTech | Viral Python App That Types Automatically

Image
  Demo : Click Video 👇👇👇 💡 Features: Fully animated typing interface Dark mode design tkinter + Python project Built for fun, portfolios, or intros Restart feature for demos Code : import tkinter as tk from tkinter import font class TypingAnimationApp:     def __init__(self, root):         self.root = root         self.root.title("Typing Animation GUI")         self.root.geometry("690x400")         self.root.configure(bg="#1e1e2f")         self.text_to_type = "Welcome to Fuzzu Tech Animation GUI"         self.index = 0         # Custom font setup (optional)         self.custom_font = ("Courier New", 24, "bold")         # Label to display animated text         self.label = tk.Label(root, text="", font=self.custom_font, fg="#00ffcc", bg="#1e1e2f")  ...

System Lockdown Prank – Python GUI FBI Warning App | FuzzuTech Viral App Series

Image
  Demo : Click Video 👇👇👇 📌 Featured: Language: Python 3 Library: Tkinter Category: Fun/Prank GUI Purpose: Entertainment only Demo Video is Available. Author: FuzzuTech Code : import tkinter as tk from tkinter import messagebox import time import threading def countdown():     for i in range(10, 0, -1):         timer_label.config(text=f"System Lock in: {i} sec")         root.update()         time.sleep(1)     timer_label.config(text="System Locked!")     messagebox.showerror("ALERT", "Your system is under investigation by FBI ⚠️") root = tk.Tk() root.title("Fuzzu FBI Warning") root.geometry("400x300") root.configure(bg="black") label = tk.Label(root, text="⚠️ FBI Cyber Crime Warning ⚠️", font=("Arial", 16, "bold"), fg="red", bg="black") label.pack(pady=30) timer_label = tk.Label(root, text="", font=("Arial", 14), fg="whi...

🔥 Advanced MP3 Music Player in Python | CustomTkinter + Pygame | Free Source Code

Image
Demo : Click Video 👇👇👇 Description: Create a stylish MP3 Music Player in Python using CustomTkinter & Pygame . 🎵 This modern music player allows you to play, pause, resume, and stop MP3 songs from a selected folder. 🚀 Download full source code and build your own Python music player today! 🔹 Features: ✅ Load & Play MP3 Songs 🎶 ✅ Pause & Resume Music ⏯ ✅ Stop Music Anytime ⏹ ✅ CustomTkinter Modern UI 🌟 ✅ Fully Functional Music Player 🎼 Code : import pygame import customtkinter as ctk from tkinter import filedialog, messagebox # Initialize Pygame Mixer pygame.mixer.init() # Create Main App Window ctk.set_appearance_mode("dark")  # "light", "dark", "system" ctk.set_default_color_theme("blue")  # "blue", "green", "dark-blue" app = ctk.CTk() app.title("🎵 MP3 Music Player 🎵") app.geometry("450x500") # Function to Load MP3 File def load_song():     file_path = f...