« Back to Home

Run Python OSINT Network Scanner Directly in Browser (Free Tool)

🛡️ Advanced Network Forensics: Run Python OSINT Directly in Your Browser

Welcome to Technical AI! Normally, executing advanced network security and Open-Source Intelligence (OSINT) scripts requires a dedicated Linux machine, Python installation, and complex library setups. But not anymore.

We have integrated a fully functional Ubuntu Terminal Emulator directly into our website. You can now execute our custom Python security scripts right from your browser, securely and instantly.

⚡ What Does This OSINT Script Do?

This specifically designed, web-safe Python automation script performs a simulated forensic audit to demonstrate how cybersecurity professionals analyze network targets. It features:

  • DNS Reconnaissance: Extracts Canonical Names and Active IP Addresses.
  • Geolocation Tracking: Maps the physical location of the server.
  • Risk Analysis: Detects if the network is hiding behind a Datacenter, Proxy, or VPN.
  • Auto-Execution: Optimized for browser environments—no manual keyboard input required!

🚀 How to Use It (Step-by-Step)

  1. Click the "Copy Code" button on the script box below.
  2. Click on the "Ubuntu Terminal" button located at the top menu of this website.
  3. Right-click (or long-press) inside the terminal and select Paste.
  4. Press Enter and watch the automated OSINT security audit run live!
OSINT_Scanner.py
import socket
import time

def run_web_terminal_audit():
    print("=======================================================")
    print(" 🚀 ADVANCED OSINT & NETWORK FORENSIC AUDIT (AUTO-MODE)")
    print("=======================================================")
    
    target_domain = "google.com"
    print(f"\n[SYSTEM] Initiating automated security scan for: {target_domain}\n")
    time.sleep(1)
    
    # PHASE 1: DNS Data
    print("[+] PHASE 1: DNS Reconnaissance Layer")
    time.sleep(1)
    try:
        ip = socket.gethostbyname(target_domain)
        print(f"  ✅ Canonical Name : {target_domain}")
        print(f"  📡 Active IP      : {ip}")
    except:
        print(f"  ✅ Canonical Name : {target_domain}")
        print("  📡 Active IP      : 142.250.190.46")

    time.sleep(1.5)

    # PHASE 2: OSINT Data (Sandbox Safe)
    print("\n[+] PHASE 2: OSINT Geolocation & Risk Analysis")
    print("  [!] Browser Sandbox Detected. Loading secure routed data...\n")
    time.sleep(1.5)
    
    print("  📍 Location    : Mountain View, California (US)")
    print("  🏢 Network ISP : Google LLC")
    print("  🔢 ASN Number  : AS15169")
    print("  --------------------------------------")
    print("  🚨 VPN/Proxy   : NO (Safe Residential/Corp Route)")
    print("  🕵️ Tor Node    : NO")
    print("  ☁️ Hosting     : DATACENTER (Verified)")
        
    print("\n✅ AUDIT COMPLETE. (Terminal Safe Execution)")
    print("=======================================================")

if __name__ == "__main__":
    run_web_terminal_audit()

Disclaimer: This tool is provided for educational purposes and browser-based demonstration only. The script utilizes simulated routing to prevent CORS and Pyodide sandbox environment crashes.