This repository has been archived by the owner on Jan 2, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 230
/
hell_string.py
184 lines (159 loc) · 5.87 KB
/
hell_string.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
import os
import base64
import ipaddress
import random
import struct
from random import randint
try:
from instagrapi import Client as IClient
from instagrapi.exceptions import ChallengeRequired, TwoFactorRequired
except:
os.system("pip install instagrapi")
from instagrapi import Client as IClient
from instagrapi.exceptions import ChallengeRequired, TwoFactorRequired
try:
from pyrogram import Client as PClient
except:
os.system("pip install pyrogram")
from pyrogram import Client as PClient
try:
from telethon.sessions import StringSession
from telethon.sessions.string import (_STRUCT_PREFORMAT, CURRENT_VERSION,
StringSession)
from telethon.sync import TelegramClient
except:
os.system("pip install telethon")
from telethon.sessions import StringSession
from telethon.sessions.string import (_STRUCT_PREFORMAT, CURRENT_VERSION,
StringSession)
from telethon.sync import TelegramClient
def main():
print("T E A M H E L L B O T ! !")
print("Hello!! Welcome to HellBot Session Generator\n")
print("Human Verification Required !!")
while True:
verify = int(randint(1, 50))
okvai = int(input(f"Enter {verify} to continue: "))
if okvai == verify:
print("\nChoose the string session type: \n1. HellBot \n2. Telethon \n3. Pyrogram \n4. Instagram")
while True:
library = input("\nYour Choice: ")
if library == "1":
generate_hellbot_session()
break
elif library == "2":
generate_telethon_session()
break
elif library == "3":
generate_pyro_session()
break
elif library == "4":
generate_insta_session()
break
else:
print("Please enter integer values (1/2/3/4 only).")
break
else:
print("Verification Failed! Try Again:")
def generate_hellbot_session():
print("!!! HELLBOT SESSION !!!")
print("One session for all HellBot's Project.")
api_id = int(input("\nEnter APP ID here: "))
api_hash = input("\nEnter API_HASH here: ")
with PClient(name="helluser", api_id=api_id, api_hash=api_hash, in_memory=True) as hell:
print("\nYour HELLBOT SESSION is saved in your telegram saved messages.")
_session = hell.export_session_string()
hell_session = hellbot_session(_session)
hell.send_message(
"me",
f"#HELLBOT_SESSION \n\n`{hell_session}`",
)
def generate_pyro_session():
print("Pyrogram Session for Music Bot!")
APP_ID = int(input("\nEnter APP ID here: "))
API_HASH = input("\nEnter API HASH here: ")
with PClient(name="helluser", api_id=APP_ID, api_hash=API_HASH, in_memory=True) as hellbot:
print("\nYour HellBot Session Is sent in your Telegram Saved Messages.")
hellbot.send_message(
"me",
f"#HELLBOT #PYROGRAM\n\n`{hellbot.export_session_string()}`",
)
def generate_telethon_session():
print("\nTelethon Session For HellBot!")
APP_ID = int(input("\nEnter APP ID here: "))
API_HASH = input("\nEnter API HASH here: ")
with TelegramClient(StringSession(), APP_ID, API_HASH) as hellbot:
print("\nYour HellBot Session Is sent in your Telegram Saved Messages.")
hellbot.send_message(
"me",
f"#HELLBOT #TELETHON \n\n`{hellbot.session.save()}`",
)
def generate_insta_session():
print("Instagram Session For HellBot!")
cl = IClient()
username = input("Enter your Instagram Username: ")
password = input("Enter your Instagram Password: ")
try:
cl.login(username, password)
xyz = cl.get_settings()
sessionid = xyz['authorization_data']['sessionid']
print(f"Your Instagram Session is: \n>>> {sessionid}")
print("\nCopy it from here and remember not to share it with anyone!")
except (ChallengeRequired, TwoFactorRequired, Exception) as e:
print(e)
def challenge_code(username, choice):
while True:
otp = input("Enter the OTP sent to your Email: ")
if otp.isdigit():
break
else:
print("Enter digits only!")
return otp
def hellbot(text):
res = ''.join(
map(
random.choice,
zip(text.lower(), text.upper()),
)
)
return res.strip()
def hellbot_session(session):
pyro_format = {
351: ">B?256sI?",
356: ">B?256sQ?",
362: ">BI?256sQ?",
}
ipv4_dc = {
1: "149.154.175.53",
2: "149.154.167.51",
3: "149.154.175.100",
4: "149.154.167.91",
5: "91.108.56.130",
}
error_msg = "Error in generating session! Report it in Hell Chats"
# converting pyrogram session
if len(session) in pyro_format.keys():
if len(session) in [351, 356]:
dc_id, _, auth_key, _, _ = struct.unpack(
pyro_format[len(session)],
base64.urlsafe_b64decode(session + "=" * (-len(session) % 4)),
)
else:
dc_id, _, _, auth_key, _, _ = struct.unpack(
pyro_format[len(session)],
base64.urlsafe_b64decode(session + "=" * (-len(session) % 4)),
)
# https://github.com/HellBoy-OP/Telethon/blob/v1/telethon/sessions/string.py
new_session = CURRENT_VERSION + StringSession.encode(
struct.pack(
_STRUCT_PREFORMAT.format(4),
dc_id,
ipaddress.ip_address(ipv4_dc[dc_id]).packed,
443,
auth_key
)
)
return f"=={hellbot('hell')}{new_session}{hellbot('bot')}=="
else:
return error_msg
main()