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
Post a Comment