Fake Screenshot Detector – Stop Online Fraud Using Python Cyber Tool

 Demo :


Click Video πŸ‘‡πŸ‘‡πŸ‘‡




























Features

• 100% Unique Cyber Tool
• High Google Trend Topic
• Legal + Safety Based
• Demo Video Embed
• Full Source Code
• Real life use case


Code :


import customtkinter as ctk

from tkinter import filedialog

from PIL import Image

import os


ctk.set_appearance_mode("dark")

ctk.set_default_color_theme("green")


app = ctk.CTk()

app.geometry("500x520")

app.title("Fake Screenshot Detector | FuzzuTech")


def scan_image():

    file_path = filedialog.askopenfilename(filetypes=[("Images","*.png *.jpg *.jpeg")])

    if not file_path:

        return


    img = Image.open(file_path)


    # Simple Metadata Detection

    meta_status = "EDITED" if img.info else "ORIGINAL"


    # Fake Logic (Social Media Viral Demo Purpose)

    final = "FAKE SCREENSHOT" if meta_status=="EDITED" else "GENUINE SCREENSHOT"


    result.configure(

        text=f"""

IMAGE REPORT


FILE : {os.path.basename(file_path)}


METADATA STATUS : {meta_status}


FINAL RESULT : {final}

""",

        text_color="red" if final=="FAKE SCREENSHOT" else "lime"

    )


ctk.CTkLabel(app, text="FAKE SCREENSHOT DETECTOR", font=("Arial Black", 26)).pack(pady=15)

ctk.CTkButton(app, text="UPLOAD SCREENSHOT", command=scan_image, height=45, width=240).pack(pady=10)

result = ctk.CTkLabel(app, text="", font=("Consolas",14))

result.pack(pady=20)

ctk.CTkLabel(app, text="© FuzzuTech Cyber Lab", text_color="gray").pack(side="bottom", pady=10)


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