Posts

Showing posts with the label IP Tracker

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

Auto IP Tracker WebApp | Track IP in Hacker Style with Pure HTML, CSS, JS – FuzzuTech

   Demo : Click Video 👇👇👇 🌟 Features: Auto IP detection with fetch from ipify Hacker-themed terminal UI Fully responsive and lightweight Fake tracking lines to simulate IP trace No external dependencies (except fetch) Code : index.html <!DOCTYPE html> <html lang="en"> <head>   <meta charset="UTF-8">   <title>Auto IP Tracker - FuzzuTech</title>   <link rel="stylesheet" href="style.css"> </head> <body>   <div class="tracker-container">     <h1>Auto IP Tracker in WebApp</h1>     <button onclick="autoTrackIP()">Auto Detect & Track</button>     <pre id="output">Click the button above to detect your IP and start tracking...</pre>   </div>   <script src="script.js"></script> </body> </html>  style.css  body {   background-color: #000;   color: #0f0; ...

Python IP Tracker App with GUI | Track IP Location Real-Time! (Working Project)

Image
Python IP Tracker App 🔥   Location, ISP, Country, City — sab real-time milta hai! Ab tum bhi bana sakte ho yeh amazing GUI app – full source code available hai 👇   Check the video & start building your own!    Demo : Click Video 👇👇👇 Code : import tkinter as tk from tkinter import messagebox, scrolledtext import requests def track_ip(ip):     try:         url = f"http://ip-api.com/json/{ip}"         response = requests.get(url)         data = response.json()         if data['status'] == 'success':             result = (                 f"IP: {data['query']}\n"                 f"Country: {data['country']} ({data['countryCode']})\n"                 f"Region: {data['regionName']} ({data['region']})\n"   ...