This repository has been archived by the owner on Nov 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 104
/
main.py
247 lines (219 loc) · 11.3 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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
import os
import sys
import time
import psutil
import random
import logging
import asyncio
from tasksio import TaskPool
from datetime import datetime
from lib.scraper import Scraper
from aiohttp import ClientSession
logging.basicConfig(
level=logging.INFO,
format="\x1b[38;5;9m[\x1b[0m%(asctime)s\x1b[38;5;9m]\x1b[0m %(message)s\x1b[0m",
datefmt="%H:%M:%S"
)
class Discord(object):
def __init__(self):
if sys.platform == "linux":
self.clear = lambda: os.system("clear")
else:
self.clear = lambda: os.system("cls")
self.clear()
self.tokens = []
self.guild_name = None
self.guild_id = None
self.channel_id = None
try:
for line in open("data/tokens.txt"):
self.tokens.append(line.replace("\n", ""))
except Exception:
open("data/tokens.txt", "a+").close()
logging.info("Please insert your tokens \x1b[38;5;9m(\x1b[0mtokens.txt\x1b[38;5;9m)\x1b[0m")
sys.exit()
logging.info("Successfully loaded \x1b[38;5;9m%s\x1b[0m token(s)\n" % (len(self.tokens)))
self.invite = input("\x1b[38;5;9m[\x1b[0m?\x1b[38;5;9m]\x1b[0m Invite \x1b[38;5;9m->\x1b[0m ")
self.message = input("\x1b[38;5;9m[\x1b[0m?\x1b[38;5;9m]\x1b[0m Message \x1b[38;5;9m->\x1b[0m ").replace("\\n", "\n")
try:
self.delay = float(input("\x1b[38;5;9m[\x1b[0m?\x1b[38;5;9m]\x1b[0m Delay \x1b[38;5;9m->\x1b[0m "))
except Exception:
self.delay = 0
print()
def stop(self):
process = psutil.Process(os.getpid())
process.terminate()
def nonce(self):
date = datetime.now()
unixts = time.mktime(date.timetuple())
return str((int(unixts)*1000-1420070400000)*4194304)
async def headers(self, token):
async with ClientSession() as client:
async with client.get("https://discord.com/app") as response:
cookies = str(response.cookies)
dcfduid = cookies.split("dcfduid=")[1].split(";")[0]
sdcfduid = cookies.split("sdcfduid=")[1].split(";")[0]
return {
"Authorization": token,
"accept": "*/*",
"accept-language": "en-US",
"connection": "keep-alive",
"cookie": "__dcfduid=%s; __sdcfduid=%s; locale=en-US" % (dcfduid, sdcfduid),
"DNT": "1",
"origin": "https://discord.com",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"referer": "https://discord.com/channels/@me",
"TE": "Trailers",
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) discord/1.0.9001 Chrome/83.0.4103.122 Electron/9.3.5 Safari/537.36",
"X-Super-Properties": "eyJvcyI6IldpbmRvd3MiLCJicm93c2VyIjoiRGlzY29yZCBDbGllbnQiLCJyZWxlYXNlX2NoYW5uZWwiOiJzdGFibGUiLCJjbGllbnRfdmVyc2lvbiI6IjEuMC45MDAxIiwib3NfdmVyc2lvbiI6IjEwLjAuMTkwNDIiLCJvc19hcmNoIjoieDY0Iiwic3lzdGVtX2xvY2FsZSI6ImVuLVVTIiwiY2xpZW50X2J1aWxkX251bWJlciI6ODMwNDAsImNsaWVudF9ldmVudF9zb3VyY2UiOm51bGx9"
}
async def login(self, token: str):
try:
headers = await self.headers(token)
async with ClientSession(headers=headers) as client:
async with client.get("https://discord.com/api/v9/users/@me/library") as response:
if response.status == 200:
logging.info("Successfully logged in \x1b[38;5;9m(\x1b[0m%s\x1b[38;5;9m)\x1b[0m" % (token[:59]))
if response.status == 401:
logging.info("Invalid account \x1b[38;5;9m(\x1b[0m%s\x1b[38;5;9m)\x1b[0m" % (token[:59]))
self.tokens.remove(token)
if response.status == 403:
logging.info("Locked account \x1b[38;5;9m(\x1b[0m%s\x1b[38;5;9m)\x1b[0m" % (token[:59]))
self.tokens.remove(token)
if response.status == 429:
logging.info("Ratelimited \x1b[38;5;9m(\x1b[0m%s\x1b[38;5;9m)\x1b[0m" % (token[:59]))
time.sleep(self.delay)
await self.login(token)
except Exception:
await self.login(token)
async def join(self, token: str):
try:
headers = await self.headers(token)
async with ClientSession(headers=headers) as client:
async with client.post("https://discord.com/api/v9/invites/%s" % (self.invite), json={}) as response:
json = await response.json()
if response.status == 200:
self.guild_name = json["guild"]["name"]
self.guild_id = json["guild"]["id"]
self.channel_id = json["channel"]["id"]
logging.info("Successfully joined %s \x1b[38;5;9m(\x1b[0m%s\x1b[38;5;9m)\x1b[0m" % (self.guild_name[:20], token[:59]))
elif response.status == 401:
logging.info("Invalid account \x1b[38;5;9m(\x1b[0m%s\x1b[38;5;9m)\x1b[0m" % (token[:59]))
self.tokens.remove(token)
elif response.status == 403:
logging.info("Locked account \x1b[38;5;9m(\x1b[0m%s\x1b[38;5;9m)\x1b[0m" % (token[:59]))
self.tokens.remove(token)
elif response.status == 429:
logging.info("Ratelimited \x1b[38;5;9m(\x1b[0m%s\x1b[38;5;9m)\x1b[0m" % (token[:59]))
time.sleep(self.delay)
self.tokens.remove(token)
else:
self.tokens.remove(token)
except Exception:
await self.join(token)
async def create_dm(self, token: str, user: str):
try:
headers = await self.headers(token)
async with ClientSession(headers=headers) as client:
async with client.post("https://discord.com/api/v9/users/@me/channels", json={"recipients": [user]}) as response:
json = await response.json()
if response.status == 200:
logging.info("Successfully created direct message with %s \x1b[38;5;9m(\x1b[0m%s\x1b[38;5;9m)\x1b[0m" % (json["recipients"][0]["username"], token[:59]))
return json["id"]
elif response.status == 401:
logging.info("Invalid account \x1b[38;5;9m(\x1b[0m%s\x1b[38;5;9m)\x1b[0m" % (token[:59]))
self.tokens.remove(token)
return False
elif response.status == 403:
logging.info("Cant message user \x1b[38;5;9m(\x1b[0m%s\x1b[38;5;9m)\x1b[0m" % (token[:59]))
self.tokens.remove(token)
elif response.status == 429:
logging.info("Ratelimited \x1b[38;5;9m(\x1b[0m%s\x1b[38;5;9m)\x1b[0m" % (token[:59]))
time.sleep(self.delay)
return await self.create_dm(token, user)
else:
return False
except Exception:
return await self.create_dm(token, user)
async def direct_message(self, token: str, channel: str):
try:
headers = await self.headers(token)
async with ClientSession(headers=headers) as client:
async with client.post("https://discord.com/api/v9/channels/%s/messages" % (channel), json={"content": self.message, "nonce": self.nonce(), "tts":False}) as response:
json = await response.json()
if response.status == 200:
logging.info("Successfully sent message \x1b[38;5;9m(\x1b[0m%s\x1b[38;5;9m)\x1b[0m" % (token[:59]))
elif response.status == 401:
logging.info("Invalid account \x1b[38;5;9m(\x1b[0m%s\x1b[38;5;9m)\x1b[0m" % (token[:59]))
self.tokens.remove(token)
return False
elif response.status == 403 and json["code"] == 40003:
logging.info("Ratelimited \x1b[38;5;9m(\x1b[0m%s\x1b[38;5;9m)\x1b[0m" % (token[:59]))
time.sleep(self.delay)
await self.direct_message(token, channel)
elif response.status == 403 and json["code"] == 50007:
logging.info("User has direct messages disabled \x1b[38;5;9m(\x1b[0m%s\x1b[38;5;9m)\x1b[0m" % (token[:59]))
elif response.status == 403 and json["code"] == 40002:
logging.info("Locked \x1b[38;5;9m(\x1b[0m%s\x1b[38;5;9m)\x1b[0m" % (token[:59]))
self.tokens.remove(token)
return False
elif response.status == 429:
logging.info("Ratelimited \x1b[38;5;9m(\x1b[0m%s\x1b[38;5;9m)\x1b[0m" % (token[:59]))
time.sleep(self.delay)
await self.direct_message(token, channel)
else:
return False
except Exception:
await self.direct_message(token, channel)
async def send(self, token: str, user: str):
channel = await self.create_dm(token, user)
if channel == False:
return await self.send(random.choice(self.tokens), user)
response = await self.direct_message(token, channel)
if response == False:
return await self.send(random.choice(self.tokens), user)
async def start(self):
if len(self.tokens) == 0:
logging.info("No tokens loaded.")
sys.exit()
async with TaskPool(1_000) as pool:
for token in self.tokens:
if len(self.tokens) != 0:
await pool.put(self.login(token))
else:
self.stop()
if len(self.tokens) == 0: self.stop()
print()
logging.info("Joining server.")
print()
async with TaskPool(1_000) as pool:
for token in self.tokens:
if len(self.tokens) != 0:
await pool.put(self.join(token))
if self.delay != 0: await asyncio.sleep(self.delay)
else:
self.stop()
if len(self.tokens) == 0: self.stop()
scraper = Scraper(
token=self.tokens[0],
guild_id=self.guild_id,
channel_id=self.channel_id
)
self.users = scraper.fetch()
print()
logging.info("Successfully scraped \x1b[38;5;9m%s\x1b[0m members" % (len(self.users)))
logging.info("Sending messages.")
print()
if len(self.tokens) == 0: self.stop()
async with TaskPool(1_000) as pool:
for user in self.users:
if len(self.tokens) != 0:
await pool.put(self.send(random.choice(self.tokens), user))
if self.delay != 0: await asyncio.sleep(self.delay)
else:
self.stop()
if __name__ == "__main__":
client = Discord()
asyncio.get_event_loop().run_until_complete(client.start())