Posts

Showing posts with the label Spy Device

Mainre Ghar Spy Cam Nikla 😱 | Python GUI App to Detect Hidden Cameras & Mics (Source Code)

Image
   Demo : Click Video ðŸ‘‡ðŸ‘‡ðŸ‘‡ 🧩 Features: Python Network Scanner GUI App with Device Table Export Suspicious Devices Works on Wi-Fi or LAN Stylish & Lightweight Code : from scapy.all import ARP, Ether, srp import tkinter as tk from tkinter import ttk, messagebox def scan():     target_ip = "192.168.1.1/24"     arp = ARP(pdst=target_ip)     ether = Ether(dst="ff:ff:ff:ff:ff:ff")     packet = ether/arp     result = srp(packet, timeout=3, verbose=0)[0]     devices = []     for sent, received in result:         devices.append({'ip': received.psrc, 'mac': received.hwsrc})          for d in devices:         tree.insert("", "end", values=(d["ip"], d["mac"])) root = tk.Tk() root.title("Spy Device Detector") root.geometry("600x400") style = ttk.Style() style.theme_use("clam") ttk.Label(root, text="Connected Devices", font=("Helve...