Hackers Can Screenshot Your Screen Silently π± | Python Cyber Security GUI Tool
Demo :
Click Video πππ
⭐ Features :
-
Real-time screenshot intrusion simulation
-
Modern cyber-security GUI
-
Ethical hacking awareness project
-
Python Tkinter + CustomTkinter
-
Beginner friendly but shocking concept
Code :
import customtkinter as ctk
import random
import time
import threading
from tkinter import messagebox
ctk.set_appearance_mode("dark")
ctk.set_default_color_theme("dark-blue")
app = ctk.CTk()
app.geometry("420x260")
app.title("Silent Screenshot Detector")
status = ctk.StringVar(value="Monitoring System Activity...")
def fake_detection():
while True:
time.sleep(random.randint(5, 12))
status.set("⚠️ Suspicious Screenshot Attempt Detected!")
messagebox.showwarning(
"SECURITY ALERT",
"An unknown process tried to capture your screen!"
)
time.sleep(3)
status.set("Monitoring System Activity...")
label = ctk.CTkLabel(
app,
text="π Cyber Security Monitor",
font=("Poppins", 20, "bold")
)
label.pack(pady=20)
status_label = ctk.CTkLabel(
app,
textvariable=status,
font=("Poppins", 14),
text_color="orange"
)
status_label.pack(pady=10)
btn = ctk.CTkButton(
app,
text="Start Protection",
command=lambda: threading.Thread(target=fake_detection, daemon=True).start()
)
btn.pack(pady=20)
app.mainloop()
Comments
Post a Comment