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

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