Posts

Showing posts with the label Cybersecurity Tools

Invisible Spy Detector – Python Cyber Security GUI Tool

Image
  Demo : Click Video 👇👇👇 Features : • Live spyware scanner • Detects RAT & keylogger • Hacker style GUI • Real time scanning • Ethical cyber awareness tool Code : import customtkinter as ctk import psutil import socket import os from PIL import Image import threading import time ctk.set_appearance_mode("dark") ctk.set_default_color_theme("green") app = ctk.CTk() app.title("Invisible Phone Spy Detector – FuzzuTech") app.geometry("600x520") app.resizable(False, False) # ================= SCAN ENGINE ================= danger_keywords = [     "spy", "monitor", "hack", "rat", "tracker", "keylog",     "remote", "stealth", "sniff", "trojan", "payload", "record" ] def start_scan():     output_box.delete("1.0", "end")     output_box.insert("end", "[*] Initializing Security Scan...\n")  ...

🔐 Password Hasher GUI in Python | MD5, SHA256, SHA512 – FuzzuTech

Image
  Demo : Click Video 👇👇👇 📄 Description: Want to hash passwords securely in Python with just one click? Here’s a beginner-friendly GUI tool made using tkinter and hashlib that supports MD5 , SHA256 , and SHA512 algorithms. This project is ideal for beginners in cybersecurity and Python GUI app development. 📚 Features : GUI with modern UI Multiple hash formats (MD5, SHA256, SHA512) Built with tkinter and hashlib Perfect for learning hashing concepts and password encryption basics Code : import tkinter as tk from tkinter import ttk, messagebox import hashlib # Function to hash the input text def hash_text():     text = input_text.get()     method = hash_method.get()     if not text:         messagebox.showwarning("Input Missing", "Please enter some text to hash.")         return     if method == "MD5":         result = hashlib.md5(text.encode()).hexdigest()...