Posts

Showing posts with the label cyber security tool

AI USB Hacker Device Detector – Python Cyber Security Tool (Tkinter GUI)

Image
  Demo : Click Video ðŸ‘‡ðŸ‘‡ðŸ‘‡ ✨ Features Real-time USB scanning Detects suspicious hacker files Auto popup warning Hacker-style neon GUI Ideal for students & offices Code : import os import time import threading import psutil from tkinter import * from tkinter import messagebox # ================= GUI ================= root = Tk() root.title("AI USB Hacker Detector") root.geometry("460x400") root.configure(bg="#050505") root.resizable(False, False) Label(root, text="AI USB HACKER DEVICE DETECTOR",       fg="#00ff00", bg="#050505",       font=("Consolas", 15, "bold")).pack(pady=12) status = Label(root, text="Status: Waiting for USB...",                fg="white", bg="#050505",                font=("Consolas", 11)) status.pack(pady=5) log = Text(root, height=14, width=54, bg="black", fg="#00ff00",            insertbackground...