Python Cyber Surveillance Tool – Monitor Webcam & Microphone Activity

  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=status).pack(pady=10)

ctk.CTkButton(app, text="Start Scan", command=fake_scan).pack(pady=20)


app.mainloop()


Comments

Popular posts from this blog

Is This News Real or Fake? πŸ€– AI Exposes the Truth | FuzzuTech Python App Demo

🚨 Python Intrusion Detection System (IDS) – Real-Time ML + Tkinter GUI Project | FuzzuTech

Educational File Encryptor GUI (Python AES Project) | FuzzuTech