Skip to content
View NEJDNDNDN's full-sized avatar

Block or report NEJDNDNDN

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this userโ€™s behavior. Learn more about reporting abuse.

Report abuse
NEJDNDNDN/README.md

GhostTrack - Version 2.2

Author: ๐‘ซ๐‘จ๐‘น๐‘ฒ ๐‘ฏ๐‘จ๐‘ช๐‘ฒ๐‘ฌ๐‘น

Telegram: @FTX_l

Useful tool to track location, phone numbers, and usernames.

This tool is for OSINT (Open-Source Intelligence) and information gathering purposes only.

import requests

def track_ip(ip): """ ูˆุธูŠูุฉ ู„ุฌู„ุจ ุจูŠุงู†ุงุช ุนู† ุนู†ูˆุงู† IP """ url = f"http://ip-api.com/json/{ip}" response = requests.get(url).json()

if response["status"] == "fail":
    return "โŒ ูุดู„ ููŠ ุฌู„ุจ ุงู„ู…ุนู„ูˆู…ุงุชุŒ ุชุฃูƒุฏ ู…ู† ุตุญุฉ ุนู†ูˆุงู† IP."

info = f"""
๐Ÿ“ IP: {response['query']}
๐ŸŒŽ ุงู„ุฏูˆู„ุฉ: {response['country']}
๐Ÿ™๏ธ ุงู„ู…ุฏูŠู†ุฉ: {response['city']}
๐Ÿ“ก ู…ุฒูˆุฏ ุงู„ุฎุฏู…ุฉ: {response['isp']}
๐ŸŒ ุงู„ู…ู†ุทู‚ุฉ ุงู„ุฒู…ู†ูŠุฉ: {response['timezone']}
"""
return info

def track_phone(number): """ ูˆุธูŠูุฉ ู„ุฌู„ุจ ุจูŠุงู†ุงุช ุนู† ุฑู‚ู… ุงู„ู‡ุงุชู """ url = f"https://api.apilayer.com/number_verification/validate?number={number}" headers = {"apikey": "YOUR_API_KEY"} # ุงุณุชุจุฏู„ "YOUR_API_KEY" ุจู…ูุชุงุญ API ุงู„ุฎุงุต ุจูƒ response = requests.get(url, headers=headers).json()

if not response["valid"]:
    return "โŒ ูุดู„ ููŠ ุฌู„ุจ ุงู„ู…ุนู„ูˆู…ุงุชุŒ ุชุฃูƒุฏ ู…ู† ุตุญุฉ ุฑู‚ู… ุงู„ู‡ุงุชู."

info = f"""
๐Ÿ“ž ุงู„ุฑู‚ู…: {response['international_format']}
๐ŸŒŽ ุงู„ุฏูˆู„ุฉ: {response['country_name']}
๐Ÿ“ถ ู…ุฒูˆุฏ ุงู„ุฎุฏู…ุฉ: {response['carrier']}
"""
return info

if name == "main": print("๐Ÿ“Œ ู…ุฑุญุจู‹ุง ุจูƒ ููŠ GhostTrack") print("1๏ธโƒฃ ุชุชุจุน ุนู†ูˆุงู† IP") print("2๏ธโƒฃ ุชุชุจุน ุฑู‚ู… ู‡ุงุชู")

choice = input("๐Ÿ”น ุงุฎุชุฑ ุงู„ุฎูŠุงุฑ: ")

if choice == "1":
    ip = input("๐Ÿ–ฅ๏ธ ุฃุฏุฎู„ ุนู†ูˆุงู† IP: ")
    print(track_ip(ip))

elif choice == "2":
    phone = input("๐Ÿ“ฑ ุฃุฏุฎู„ ุฑู‚ู… ุงู„ู‡ุงุชู (ู…ุน ูƒูˆุฏ ุงู„ุฏูˆู„ุฉ): ")
    print(track_phone(phone))

else:
    print("โŒ ุงุฎุชูŠุงุฑ ุบูŠุฑ ุตุงู„ุญ!")

Popular repositories Loading

  1. GhostTrack GhostTrack Public

    Forked from HunxByts/GhostTrack

    Useful tool to track location or mobile number

    Python

  2. NEJDNDNDN NEJDNDNDN Public

    Config files for my GitHub profile.