Fake Screenshot Detector in Python | Cyber Security GUI Project
Demo : Click Video 👇👇👇 ⭐ Features : Detects edited screenshots Reads hidden image metadata Hacker-style GUI Beginner-friendly Python project Real-life scam awareness Code : import tkinter as tk from tkinter import filedialog from PIL import Image, ImageTk, ExifTags # --------------------------- # Main Window # --------------------------- root = tk.Tk() root.title("Fake Screenshot Detector") root.geometry("520x420") root.configure(bg="#0b0b0b") root.resizable(False, False) # --------------------------- # Global variables # --------------------------- img_label = None # --------------------------- # Functions # --------------------------- def analyze_image(path): try: img = Image.open(path) exif = img.getexif() metadata = {} for tag_id, value in exif.items(): tag = ExifTags.TAGS.get(tag_id, tag...