IP Lookup For the skids

Project Majin

Newbie
Joined
11 Jun 2026
Messages
17
Reaction score
465
Points
48
JOIN MY PRIVATE SERVER FOR REAL CRACKING SCRIPTS AND DAILY PRIVATE ACCOUNT LEAKS FOR FREE!
DISCORD SERVER


ADVANCED IP-LOOKUP:


NORMAL IP-LOOKUP:
Python:
import os
import requests
from colorama import Fore, Style, init

init(autoreset=True)


def goku():
    try:
        return requests.get("http://ip-api.com/json/").json()["query"]
    except:
        return "Unknown"


def vegeta(ip):
    print(f"\n[*] Fetching data for: {Fore.LIGHTYELLOW_EX}{ip if ip else 'Your IP'}...")
    try:
        res = requests.get(f"http://ip-api.com/json/{ip}").json()

        if res["status"] == "success":
            print("\n" + "=" * 45)
            print(f" RESULTS FOR: {res['query']}")
            print("=" * 45)

            
            print(
                f" Country:\t{Fore.LIGHTYELLOW_EX}{res.get('country')} ({res.get('countryCode')})"
            )
            print(f" Region:\t{Fore.LIGHTYELLOW_EX}{res.get('regionName')}")
            print(f" City:\t\t{Fore.LIGHTYELLOW_EX}{res.get('city')}")
            print(f" Zip:\t\t{Fore.LIGHTYELLOW_EX}{res.get('zip')}")
            print(f" Timezone:\t{Fore.LIGHTYELLOW_EX}{res.get('timezone')}")
            print(f" ISP:\t\t{Fore.LIGHTYELLOW_EX}{res.get('isp')}")
            print(f" Org:\t\t{Fore.LIGHTYELLOW_EX}{res.get('org')}")
            print(f" AS:\t\t{Fore.LIGHTYELLOW_EX}{res.get('as')}")
            print(f" Lat/Lon:\t{Fore.LIGHTYELLOW_EX}{res.get('lat')}, {res.get('lon')}")
            print("=" * 45)

            
            ans = input("\nSave data via Webhook? (y/n): ").strip().lower()
            if ans == "y":
                wh = input("Paste your Discord Webhook URL: ").strip()
                if wh:
                    
                    payload = {
                        "username": "IP-Lookup Tool",
                        "avatar_url": "https://i.imgur.com/My3GTRn.jpeg", 
                        "embeds": [
                            {
                                "title": f" IP Lookup Details: {res.get('query')}",
                                "color": 16776960, 
                                "fields": [
                                    {
                                        "name": " Location",
                                        "value": f"{res.get('city')}, {res.get('regionName')}, {res.get('country')}",
                                        "inline": False,
                                    },
                                    {
                                        "name": " Zip Code",
                                        "value": str(res.get("zip")),
                                        "inline": True,
                                    },
                                    {
                                        "name": "⏰ Timezone",
                                        "value": str(res.get("timezone")),
                                        "inline": True,
                                    },
                                    {
                                        "name": " ISP / Provider",
                                        "value": str(res.get("isp")),
                                        "inline": False,
                                    },
                                    {
                                        "name": " Organization",
                                        "value": str(res.get("org")),
                                        "inline": False,
                                    },
                                    {
                                        "name": " AS Number",
                                        "value": str(res.get("as")),
                                        "inline": True,
                                    },
                                    {
                                        "name": "️ Coordinates (Lat, Lon)",
                                        "value": f"{res.get('lat')}, {res.get('lon')}",
                                        "inline": True,
                                    },
                                ],
                                "footer": {
                                    "text": "Script for the skids"
                                },
                            }
                        ],
                    }

                    
                    r_wh = requests.post(wh, json=payload)
                    if r_wh.status_code in [200, 204]:
                        print(f"{Fore.GREEN}[+] Sent successfully to Discord!")
                    else:
                        print(f"{Fore.RED}[-] Webhook failed: {r_wh.status_code}")
        else:
            print("\n[-] Error: " + res.get("message", "fail"))
    except Exception as e:
        print("\n[-] Net error:", e)



os.system("cls" if os.name == "nt" else "clear")

print(r"  _____ _____    _                 _ ")
print(r" |_   _|  __ \  | |               | |    ")
print(r"   | | | |__) | | | ___   ___  ___| |    ")
print(r"   | | |  ___/  | |/ _ \ / _ \/ __| |    ")
print(r"  _| |_| |      | | (_) | (_) \__ \_|    ")
print(r" |_____|_|      |_|\___/ \___/|___(_)    ")
print(" =========================================")
print(f"   Your IP: {goku()}")
print(" =========================================\n")

while True:
    x = input("Enter IP (or 'q' to quit): ").strip()
    if x.lower() == "q":
        print("bye")
        break
    vegeta(x)
    print("\n" + "-" * 40)

MAKE SURE THAT YOU INSTALL REQUESTS AND COLORAMA IF NOT THE SCRIPT WILL OFC NOT WORK