USB Device History Viewer – Ethical Hacking Python GUI | FuzzuTech
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) ...