Posts

Showing posts with the label Bank Scam

Fake Bank SMS & OTP Scams Explained with Python GUI (Cyber Security Demo)

Image
  Demo : Click Video ðŸ‘‡ðŸ‘‡ðŸ‘‡ ⭐ Features : Hacker-style Python GUI SMS keyword detection Link risk analysis Scam awareness demo Full main.py code Code : import customtkinter as ctk import tkinter as tk from tkinter import messagebox import time import threading # ---------------- CONFIG ---------------- ctk.set_appearance_mode("dark") ctk.set_default_color_theme("dark-blue") SCAM_KEYWORDS = [     "urgent", "verify", "blocked", "suspended", "click",     "link", "otp", "immediately", "account", "debit",     "credit", "limit", "warning" ] FAKE_DOMAINS = [     "bit.ly", "tinyurl", "rb.gy", "paytm-secure",     "upi-secure", "verify-now" ] # ---------------- APP ---------------- class BankSMSDetector(ctk.CTk):     def __init__(self):         super().__init__()         sel...