jakobovis
Absurdity Curator
2
MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1
300 XP
NO LEECHERS!!!
I've made this to show how a basic checker can be made in python
I've made this to show how a basic checker can be made in python
Keep this in mind:
- No proxies are used in this checker
- This won't work for captchas
- This checks based of response code so be wary
Code:
import requests # We use to make HTTP requests
from bs4 import BeautifulSoup # We use to parse cookies/tokens
headers = {
# HEADERS HERE
}
# Get request for html content parsing
get_session = requests.get('url', headers=headers)
soup = BeautifulSoup(get_session, 'html.parser')
# COOKIE/TOKEN PARSE LOGIC
# Data dictionary for post request
data = {
# BRING OVER PARSED VARIABLES HERE
}
# Login post request with stored data
login = requests.post('url', headers=headers, data=data)
login_kc = BeautifulSoup(login, 'html.parser')
# Login key check here (basic response code checker)
if login.status_code == 200:
print(f'Account is valid')
else:
print(f'Account is invalid')