Posts

Showing posts with the label python tools

💻 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 ...