Posts

Showing posts with the label url filter

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