Posts

Showing posts with the label Open Ports

🚀 Python Cyber Security Tool – Network & Port Scanner (GUI-Based Ethical Hacking Tool)

Image
Demo : Click Video 👇👇👇 📌 Blogger Features: ✅ Full Python Source Code 📝 ✅ Modern GUI-Based Cyber Security Tool 🎨 ✅ Step-by-Step Guide to Use the Tool 📖 ✅ SEO Optimized for Google Ranking 🚀 ✅ Embedded YouTube Video + Download Link 📺 Code : import tkinter as tk from tkinter import messagebox, ttk import socket import threading # ---- GUI Setup ---- root = tk.Tk() root.title("Cyber Security Tool - Network & Port Scanner") root.geometry("600x400") root.configure(bg="#222222") # ---- Functions ---- def scan_ports():     target_ip = ip_entry.get()     if not target_ip:         messagebox.showerror("Error", "Please enter a valid IP Address!")         return          output_text.delete("1.0", tk.END)     output_text.insert(tk.END, f"Scanning Ports on {target_ip}...\n")          def port_scan():         for port in range(20, 1025):...