0% found this document useful (0 votes)
2 views

Message (23)

The document is a Python script that prompts the user for a username and password, and if valid, allows the user to search for an ID in a file and optionally geolocate it using an IP API. The script includes ASCII art for a menu interface and sends the geolocation data to a specified Discord webhook. If the credentials are incorrect, it denies access with an inappropriate message.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views

Message (23)

The document is a Python script that prompts the user for a username and password, and if valid, allows the user to search for an ID in a file and optionally geolocate it using an IP API. The script includes ASCII art for a menu interface and sends the geolocation data to a specified Discord webhook. If the credentials are incorrect, it denies access with an inappropriate message.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 3

import json

import requests
import os
import getpass

os.system('title @dm yvqb on discord')

menu_text1 = r"""

.__ .__
| | ____ ____ |__| ____
| | / _ \ / ___\ | | / \
| |__( <_> ) / /_/ >| || | \
|____/ \____/ \___ / |__||___| /
/_____/ \/

"""

username = input("username > ")


password = getpass.getpass("password > ")

menu_text2 = r"""

░▒▓█▓▒░▒▓███████▓▒░
░▒▓██████▓▒░░▒▓████████▓▒░▒▓██████▓▒░
░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░
░▒▓█▓▒░░▒▓█▓▒░
░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░ ░▒▓█▓▒░
░▒▓█▓▒░░▒▓█▓▒░

░▒▓█▓▒░▒▓███████▓▒░░▒▓█▓▒▒▓███▓▒░▒▓██████▓▒░░▒▓█▓▒░░▒▓█▓▒░
░▒▓█▓▒░▒▓█▓▒░ ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░
░▒▓█▓▒░░▒▓█▓▒░
░▒▓█▓▒░▒▓█▓▒░ ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░
░▒▓█▓▒░░▒▓█▓▒░
░▒▓█▓▒░▒▓█▓▒░
░▒▓██████▓▒░░▒▓████████▓▒░▒▓██████▓▒░

╔══════════════════════════════════════════════════════╗


║ Enter Your ID To Scrape


╚══════════════════════════════════════════════════════╝
"""

menu_text3 = r"""

░▒▓█▓▒░▒▓███████▓▒░
░▒▓██████▓▒░░▒▓████████▓▒░▒▓██████▓▒░
░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░
░▒▓█▓▒░░▒▓█▓▒░
░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░ ░▒▓█▓▒░
░▒▓█▓▒░░▒▓█▓▒░

░▒▓█▓▒░▒▓███████▓▒░░▒▓█▓▒▒▓███▓▒░▒▓██████▓▒░░▒▓█▓▒░░▒▓█▓▒░
░▒▓█▓▒░▒▓█▓▒░ ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░
░▒▓█▓▒░░▒▓█▓▒░
░▒▓█▓▒░▒▓█▓▒░ ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░
░▒▓█▓▒░░▒▓█▓▒░
░▒▓█▓▒░▒▓█▓▒░
░▒▓██████▓▒░░▒▓████████▓▒░▒▓██████▓▒░

╔══════════════════════════════════════════════════════╗

║https://discord.com/ugly
║ Enter Your Webhook Url


╚══════════════════════════════════════════════════════╝

"""

if username == "purzsss" and password == "jojobeans913":


os.system('cls')
print(menu_text2)
id_to_find = input("Put the ID you want to find > ")
found = False

with open(r"formatted.txt", 'r') as file:


for line in file:
if id_to_find in line:

parts = line.strip().split(":")
ip_part = parts[1].strip()
print(f"Found: {ip_part}")
str(ip_part)
choice = input("Want To Geolocate? [y] [n] > ")
if choice == "y":
try:
webhook = "puthere"
r = requests.get(f'http://ip-api.com/json/{ip_part}')
print(r.json())
msg = f"{ip_part}" + "\n" + f"{r.json()}"
r = requests.post(webhook, json={"username": username, "avatar_url":
'https://cdn.discordapp.com/avatars/990300955306238003/f72df67ae0ccaf6f4bfd208dc6e4
5dc5.webp?size=128', "content": msg})
print(r.json())
input("")
except:
input("")
else:
input("")

found = True
input("")
break

if not found:
print("Not in the db gang")
input("")
else:
print('ur not getting in nigger')
input("")

You might also like