CREATE OWN ACCOUNT CHECKER START YOUR OWN BUSINESS
🔰 CREATE OWN ACCOUNT CHECKER START YOUR OWN BUSINESS 🔰
You will learn how to make fast and undetected Checkers using requests, sometimes even faster than others that are written in the same programming-language. We use python as this should be the easiest way to get into this Business. Let's start:
First of all you need Basic Python Knowledge. Find online Tutorials, YouTube or stuff like that.
Now, when taking a look on other opensource projects that are written in Python you might find something like requests.get or requests.post and sometimes others are built with selenium where i will talk in another Thread later probably.
While is is useful for APIs to get or post Informations, it really isn't for checkers where you don't care about the content that will be returned and only care about, if the request was successful or not. for this use requests.head. You always should avoid to use the slow requests libary. use httpx or aiohttp instead.
The following Code include following features:
Combo Support
Proxy Support
Threading (concurrent requests)
ASCII Main Menu
I added instructions on how to use the ready made code for your own targets in the main.py file. you should take a look at it, otherwise you won't be able to create your own checkers based on my Template!
Download :Click
Pass: 123123
You can use resp.status_code to check, if the request was sucessful. Note that the values are integers what means you need to check without "" or add the word int to directly convert it to integer in memory: int("200")
All responses in the 200 ranges are successfull. You can print out the response as debug and then look on the web what the code means. you then can give custom responses depending on the response code. Something like:
If resp.status_code == 200: print("The Request had no issues and everything went fine :)")
module python3 : py -m pip install pystyle
py -m pip install httpx
Image Demo :
No comments