0% found this document useful (0 votes)
2 views

message 2

The document is a Python script that generates random usernames and checks their availability on Snapchat. If a username is found to be available, it sends a notification to a specified Discord webhook. The script includes functions for generating usernames, checking availability, and sending notifications, and runs in an infinite loop until interrupted.

Uploaded by

zz7fxz
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views

message 2

The document is a Python script that generates random usernames and checks their availability on Snapchat. If a username is found to be available, it sends a notification to a specified Discord webhook. The script includes functions for generating usernames, checking availability, and sending notifications, and runs in an infinite loop until interrupted.

Uploaded by

zz7fxz
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

import requests

import random
import time
import fade
import os

os.system("title z7e")
os.system("@echo off")
os.system("pip install fade")
dd = '''
███████╗███╗ ██╗██╗██████╗ ███████╗██████╗ ██████╗██╗ ██╗ █████╗ ████████╗
██╔════╝████╗ ██║██║██╔══██╗██╔════╝██╔══██╗██╔════╝██║ ██║██╔══██╗╚══██╔══╝
███████╗██╔██╗ ██║██║██████╔╝█████╗ ██████╔╝██║ ███████║███████║ ██║
╚════██║██║╚██╗██║██║██╔═══╝ ██╔══╝ ██╔══██╗██║ ██╔══██║██╔══██║ ██║
███████║██║ ╚████║██║██║ ███████╗██║ ██║╚██████╗██║ ██║██║ ██║ ██║
╚══════╝╚═╝ ╚═══╝╚═╝╚═╝ ╚══════╝╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝

@Z7E
'''

ww = fade.purplepink(dd)
print(ww)

letters = 'qwertyuiopasd.fghjklzxcvbnm1234567890'

def generate_username(length=4):

return ''.join(random.choice(letters) for _ in range(length))

def check_username_availability(username, headers):

url = f'https://www.snapchat.com/add/{username}'
response = requests.get(url, headers=headers)
return response.status_code == 200

def send_discord_notification(webhook_url, username):

data = {
"content": f"userFound - ban: {username}"
}
response = requests.post(webhook_url, json=data)
return response.status_code

def main():
sessionid = input("Sessionid : (sessionid): ")
webhook_url =
"https://canary.discord.com/api/webhooks/1249247816749027328/OiQIl2bzFnsukVmtpV5MWa
JB39Nqkx5H6cIMLLSe6FW-mZj7busrqcSoP6oVRzSb81GX"
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',
'Cookie': f'sessionid={sessionid}',
}

while True:
username = generate_username()
if check_username_availability(username, headers):
print(f'{username} | Ban or available ! ✔')
send_discord_notification(webhook_url, username)
time.sleep(2)

else:
print(f'{username} not available ྾')

time.sleep(1)

if __name__ == "__main__":
main()

You might also like