Posts

Showing posts with the label codingshorts

🔥 Fuzzu Ethical Port Scanner – Python GUI App to Scan Open Ports Fast

Image
  Demo : Click Video 👇👇👇 Description: Fuzzu Ethical Port Scanner is a Python GUI app that scans open ports on any IP/domain using threading for fast performance. Designed in a stylish dark mode with tkinter + socket module. Perfect for cybersecurity students, ethical hackers, and Python enthusiasts. Created by FuzzuTech. Learn, build, and secure! Features: Threaded port scanning from 1–1024 Fast GUI display with Treeview Dark mode design (hacker-style) Error handling for invalid hosts Built using core Python libraries only Code : import socket import threading import tkinter as tk from tkinter import ttk, messagebox from datetime import datetime # -------------------- SCAN FUNCTION -------------------- def scan_port(host, port, tree):     s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)     s.settimeout(0.5)     try:         con = s.connect((host, port))         tree.insert("", "end", ...

Ethical WiFi Brute Force Simulation in Python – FuzzuTech GUI Tool

Image
  Demo : Click Video 👇👇👇 📝 Description : Explore how WiFi brute force attacks work in this ethical simulation built with Python tkinter . This GUI app lets you input an SSID, load a wordlist, and attempt password cracking in a visual and educational way. Learn how brute force logic works under the hood—perfect for ethical hackers and Python learners. Created by FuzzuTech. 📌 Features : ✔️ Python tkinter GUI App ✔️ Fake SSID Brute Force Simulation ✔️ Custom Wordlist Integration ✔️ Ethical/Educational Only ✔️ Dark Mode Hacker UI Code : import tkinter as tk from tkinter import filedialog, messagebox import time def simulate_brute_force():     ssid = ssid_entry.get()     if not ssid or not wordlist_path.get():         messagebox.showerror("Error", "Please enter SSID and select a wordlist.")         return     with open(wordlist_path.get(), 'r') as file:         passwords =...

🔐 FuzzuTech – Steganography Tool GUI | Hide Messages in Images (Python App)

Image
  Demo : Click Video 👇👇👇 ✨ Features : Encode & decode hidden messages 100% offline Dark mode GUI PNG support Built with Python PIL + customtkinter Code : import customtkinter as ctk from tkinter import filedialog from PIL import Image import io ctk.set_appearance_mode("dark") ctk.set_default_color_theme("blue") app = ctk.CTk() app.geometry("500x600") app.title("Steganography Tool – FuzzuTech") def encode_image():     filepath = filedialog.askopenfilename()     if not filepath: return     img = Image.open(filepath)     message = text_entry.get("1.0", "end-1c")     encoded = img.copy()     binary_msg = ''.join(format(ord(i), '08b') for i in message)     binary_msg += '1111111111111110'  # EOF marker     pixels = list(encoded.getdata())     for i in range(len(binary_msg)):         r, g, b = pixels[i]         r = (r & ~1) ...

🧠 File Hash Checker GUI – MD5, SHA1, SHA256 in Python (FuzzuTech)

Image
  Demo : Click Video 👇👇👇 📌 Description: A beautifully designed file hash calculator built using Python's tkinter , styled with modern colors, and capable of instantly generating MD5, SHA1, and SHA256 hashes of any file. It's perfect for checking file integrity or spotting tampered software. Export results easily and verify like a pro. Designed by FuzzuTech to help creators, coders, and digital forensics enthusiasts. 📌 Features: 💻 Built with Python's tkinter 🔐 Supports MD5, SHA1, SHA256 hashing 🧾 Export hash results as .txt 🌙 Modern Dark Mode UI ⚡ Instant file verification tool 🛡 Designed for hackers, coders, sysadmins 📦 Lightweight & Offline Code : import tkinter as tk from tkinter import filedialog, messagebox import hashlib, os # Stylish Colors BG_COLOR = "#1e1e2f" BTN_COLOR = "#03dac6" TEXT_COLOR = "#ffffff" FONT = ("Segoe UI", 11) def hash_file(file_path, algo):     h = hashlib.new(algo)     wi...

Detect SQL Injections Instantly with Python GUI – FuzzuTech

Image
  Demo : Click Video 👇👇👇 📄 Features: GUI App using Python & CustomTkinter Detects SQL Injection using Regex Instant detection for safe vs malicious queries Offline, lightweight, and beginner-friendly Great for coding learners, students, and security pros Code : import customtkinter as ctk import re import pyperclip # --- Configure appearance --- ctk.set_appearance_mode("dark") ctk.set_default_color_theme("blue") app = ctk.CTk() app.geometry("550x500") app.title("🔒 Fuzzu SQL Injection Detector") app.resizable(False, False) # --- SQL Injection Patterns --- suspicious_patterns = [     r"(--|\|\|)",                      # SQL comments     r"(' OR '1'='1|\" OR \"1\"=\"1)",  # classic injection     r"(DROP|INSERT|DELETE|UPDATE)\s+\w+\s+.*--",     r"(UNION\s+SELECT)",     r"(' OR 1=1|\" OR 1=1)",     r"(OR\s+\d+=\d+)", ] # ---...