Posts

FuzzuTech Advanced Calculator – Python GUI + CLI Project

Image
  Demo : Click Video ðŸ‘‡ðŸ‘‡ðŸ‘‡ Features: Full video embed from YouTube Short description from above Code snippets (main.py + main_cli.py) with syntax highlighting Download link for code (GitHub/Drive) CTA to subscribe/follow on YT, IG, FB Code : main_cli.py """ FuzzuTech - Advanced Command Line Calculator Features: - Safe expression evaluation (using ast) - Supports + - * / // % ** parentheses - Math functions: sqrt, sin, cos, tan, log, ln, exp, factorial, abs - Memory: M+, M-, MR, MC - History: 'hist' shows previous calculations - Commands: help, exit, clear Author: FuzzuTech """ import ast import math import operator as op from collections import deque # Allowed operators map ALLOWED_BINOPS = {     ast.Add: op.add,     ast.Sub: op.sub,     ast.Mult: op.mul,     ast.Div: op.truediv,     ast.FloorDiv: op.floordiv,     ast.Mod: op.mod,     ast.Pow: op.pow, } ALLOWED_UNARYOPS = {     ast....

🔥 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", ...

💣 Localhost DDoS Simulator in Python – Ethical Hacking Demo GUI

Image
  Demo : Click Video ðŸ‘‡ðŸ‘‡ðŸ‘‡ 📌 Features : Embedded YouTube Short Code Snippets: app.py and main.py Screenshots of GUI + progress bar Safety Notice: Educational use only Tags/Labels for indexing (use the tag list above) Button to Download Project Files (optional: link to GitHub) Code : app.py # save as app.py from flask import Flask app = Flask(__name__) @app.route('/') def home():     return "Hello from localhost!" if __name__ == '__main__':     app.run(port=5000)   main.py :    import tkinter as tk from tkinter import ttk, messagebox import threading import requests import time import random # ------------------- GUI Setup ------------------- root = tk.Tk() root.title("💣 Localhost DDoS Simulator - Educational Use Only") root.geometry("500x500") root.configure(bg="#1e1e1e") # ------------------- Style ------------------- style = ttk.Style() style.theme_use('clam') style.configure("TButton", fo...

💻 Fake Windows Format GUI in Python – FuzzuTech Project

Image
  Demo : Click Video ðŸ‘‡ðŸ‘‡ðŸ‘‡ Post Features: 🌟 Embed YouTube Short 📸 Screenshots of GUI (optional) 📄 Code Snippet/Download Link (if desired) 🔗 Link to GitHub (optional) ⚠️ Disclaimer: This project is for educational purposes only. Code : import tkinter as tk from tkinter import ttk import time import threading # ---- Format Simulation Function ---- def start_formatting():     start_btn.config(state="disabled")     status_label.config(text="Formatting in progress...\nDo not turn off your computer.", fg="white")     for i in range(101):         progress_bar["value"] = i         percent_label.config(text=f"{i}% Completed")         time.sleep(0.07)         root.update_idletasks()     status_label.config(text="Format Complete.\nRestarting system...", fg="lime")     percent_label.config(text="Done ✔") # ---- Thread Wrapper ---- def thread...

Web Request Interceptor GUI in Python – FuzzuTech

Image
  Demo : Click Video ðŸ‘‡ðŸ‘‡ðŸ‘‡ 🖊️ Description: A modern Python GUI app to intercept and block suspicious URLs using regex patterns. Great for cybersecurity awareness and ethical hacking demos. Built with tkinter and ttkbootstrap by FuzzuTech. 🌟 Features: Regex-based URL blocking Request interception using requests GUI built with tkinter + ttkbootstrap Real-time header view Hacker-style dark mode interface Beginner friendly Python script Educational cybersecurity tool Code : import tkinter as tk from tkinter import ttk, messagebox import requests from ttkbootstrap import Style import re class InterceptorApp:     def __init__(self, root):         self.root = root         self.root.title("Web Request Interceptor - FuzzuTech")         self.root.geometry("600x500")         self.root.resizable(False, False)         style = Style("cyborg")  # Modern ...