Posts

Showing posts with the label ai threat score

Live IP & Port Tracker with AI Threat Score – Python GUI | FuzzuTech

Image
  Demo : Click Video 👇👇👇 🔹 Description : Track any IP address with AI Threat Score & real-time port scanning using this Python GUI app. Built with tkinter, socket & threading. 🔹 Features : IPv4 Address Validation AI-Based Threat Score Generator Port Scanner (20–1024) Threaded Fast Scan Custom Dark Mode GUI (tkinter) Python Code GUI App – 100% Open Source Lightweight Ethical Hacking Utility Code : import tkinter as tk from tkinter import ttk, messagebox import socket import threading import random import re # Simulate AI threat score based on IP def get_threat_score(ip):     random.seed(sum([int(x) for x in ip.split('.')]))     return random.randint(10, 99) # Scan common ports def scan_ports(ip, output_box):     output_box.insert(tk.END, f"\n[🔍 Scanning Ports on {ip}...]\n")     for port in range(20, 1025):         try:             with socket.socket(soc...