Posts

Showing posts with the label portscanner

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