-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c35e10f
commit 59ead6e
Showing
1 changed file
with
97 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
import requests | ||
import random | ||
from colorama import Fore | ||
import os | ||
import sys | ||
import string | ||
g = Fore.GREEN | ||
r = Fore.RED | ||
b = Fore.BLUE | ||
y = Fore.YELLOW | ||
re = Fore.RESET | ||
l = Fore.LIGHTBLACK_EX | ||
blue = Fore.BLUE | ||
letters = ["a", "b","c", "d","e", "f","g", "h","i", "j","k", "l","m", "n", | ||
"o", "p","q", "r","s", "t","u", "v","w", "x","y", "z",] | ||
|
||
|
||
|
||
|
||
|
||
def drawshit(): | ||
print(f''' | ||
{g} | ||
/$$$$$$ /$$ /$$ /$$$$$$ | ||
/$$__ $$ | $$ |__/ /$$__ $$ | ||
| $$ \__/ /$$$$$$ /$$$$$$ /$$$$$$ /$$| $$ \__//$$ /$$ | ||
| $$$$$$ /$$__ $$ /$$__ $$|_ $$_/ | $$| $$$$ | $$ | $$ | ||
\____ $$| $$ \ $$| $$ \ $$ | $$ | $$| $$_/ | $$ | $$ | ||
/$$ \ $$| $$ | $$| $$ | $$ | $$ /$$| $$| $$ | $$ | $$ | ||
| $$$$$$/| $$$$$$$/| $$$$$$/ | $$$$/| $$| $$ | $$$$$$$ | ||
\______/ | $$____/ \______/ \___/ |__/|__/ \____ $$ | ||
| $$ /$$ | $$ | ||
| $$ | $$$$$$/ | ||
|__/ \______/ | ||
{y}yall Just got raped by a 15 yr old boy LOL | ||
github.com/revenge-1337{re} | ||
''') | ||
|
||
|
||
|
||
|
||
|
||
|
||
def random_char(char_num): | ||
return ''.join(random.choice(string.ascii_letters) for _ in range(char_num)) | ||
|
||
|
||
url = "https://spclient.wg.spotify.com/#/public/v1/account" | ||
|
||
|
||
headers = { | ||
'authority': 'spclient.wg.spotify.com', | ||
'sec-ch-ua': '"Google Chrome";v="93", " Not;A Brand";v="99", "Chromium";v="93"', | ||
'sec-ch-ua-mobile': '?0', | ||
'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36', | ||
'sec-ch-ua-platform': '"Windows"', | ||
'content-type': 'application/x-www-form-urlencoded', | ||
'accept': '*/*', | ||
'origin': 'https://www.spotify.com', | ||
'sec-fetch-site': 'same-site', | ||
'sec-fetch-mode': 'cors', | ||
'sec-fetch-dest': 'empty', | ||
'referer': 'https://www.spotify.com/', | ||
'accept-language': 'en-US,en;q=0.9' | ||
} | ||
|
||
|
||
|
||
|
||
|
||
|
||
def mainfunction(): | ||
os.system("cls") | ||
drawshit() | ||
x = input("Ready? Y/N > ") | ||
if x == "y": | ||
while True: | ||
number = 0 | ||
Email = random_char(17)+"@protonmail.com" | ||
password = random_char(5)+"revenge-1337" | ||
payload=f'birth_day=2&birth_month=02&birth_year=1989&collect_personal_info=undefined&creation_flow=&creation_point=https%3A%2F%2Fwww.spotify.com%2Fus%2F&displayname=Revengeis1337&gender=male&iagree=1&key=a1e486e2729f46d6bb368d6b2bcda326&platform=www&referrer=&send-email=0&thirdpartyemail=1&email={Email}&password={password}&password_repeat={password}' | ||
response = requests.request("POST", url, headers=headers, data=payload) | ||
print(f"[{g}WORKING{y} PREMIUM{re}] " + Email + ":" + password + " (SAVED)") | ||
hits = open("hits.txt","a") | ||
hits.write(Email + ":" + password + " | github.com/revenge-1337" + "\n") | ||
hits.close | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
if __name__ == "__main__": | ||
mainfunction() |