File tree Expand file tree Collapse file tree 1 file changed +17
-7
lines changed
Expand file tree Collapse file tree 1 file changed +17
-7
lines changed Original file line number Diff line number Diff line change 44
55import binascii # hex encoding
66
7- import requests # https requests
7+ # https requests
88
99from uuid import uuid4 # gen random guid
10-
11- from Crypto .Cipher import AES
12- from Crypto .Hash import SHA256
13- from Crypto .Util .Padding import pad , unpad
14- # aes + padding, sha256
15-
1610import webbrowser
1711import platform
1812import subprocess
1913import datetime
2014import sys
2115import os
2216
17+ try :
18+ from Crypto .Cipher import AES
19+ from Crypto .Hash import SHA256
20+ from Crypto .Util .Padding import pad , unpad
21+ from requests_toolbelt .adapters .fingerprint import FingerprintAdapter
22+ import requests
23+ except Exception as f :
24+ print ("Exception when importing modules: " + str (f ))
25+ print ("installing necessary modules...." )
26+ os .system ("pip install pycryptodome" )
27+ os .system ("pip install requests_toolbelt" )
28+ os .system ("pip install requests" )
29+ print ("Modules installed!" )
30+ time .sleep (1.5 )
31+ exit (0 )
32+
2333from requests_toolbelt .adapters .fingerprint import FingerprintAdapter
2434
2535
You can’t perform that action at this time.
0 commit comments