Navigation X
ALERT
Click here to register with a few steps and explore all our cool stuff we have to offer!



 3303

Python Checker?

by uh9sfgd - 12 September, 2023 - 01:37 PM
This post is by a banned member (uh9sfgd) - Unhide
uh9sfgd  
Registered
60
Posts
1
Threads
1 Year of service
#1
(This post was last modified: 12 September, 2023 - 01:38 PM by uh9sfgd. Edited 1 time in total.)
Hey guys, im new in this and would like to learn how i can make my own Python checker for example netflix or spotify, would be thankful for serios answers  :)

DC: bayonettbeta
This post is by a banned member (wasteheek) - Unhide
wasteheek  
Registered
7
Posts
0
Threads
1 Year of service
#2
Use requests or if the site has some kind of protection, tls_client for making requests to the server.
Use threading package for making multiple requests at the same time which allows you to check accounts faster.
Steps:
1. Go to your browser and press F12 and then click Network
2. Login to a valid account
3. Look at the apis called
You'll probably see something like this:
https://example.com/api/login
Click on it and then click on the request tab, you'll see some JSON shit.
4. open up an ide and start replicating the same request
5. ???
6. profit
example code:
request = requests.post("https://example.com/api/login",json={"username":"example","password":"examplepassword"}).json()
and then you can parse the json response like this:
is_valid = request["is_valid"]

Start doing this with some small site since those don't usually have the best protection against these attacks.

Good luck
This post is by a banned member (uh9sfgd) - Unhide
uh9sfgd  
Registered
60
Posts
1
Threads
1 Year of service
#3
thank u!, is there any method to do it for netflix or spotify too ? cuz on these sites where i want to do it, i dont know how to do it
This post is by a banned member (uh9sfgd) - Unhide
uh9sfgd  
Registered
60
Posts
1
Threads
1 Year of service
Bumped #4
This is a bump
This post is by a banned member (wasteheek) - Unhide
wasteheek  
Registered
7
Posts
0
Threads
1 Year of service
#5
(17 September, 2023 - 03:45 PM)uh9sfgd Wrote: Show More
thank u!, is there any method to do it for netflix or spotify too ? cuz on these sites where i want to do it, i dont know how to do it

It's the same way I told you, although those sites might have some protection, take a look at other checker's source code to see how they work and learn from it. And remember to use residental proxies + hq combos :)
This post is by a banned member (uh9sfgd) - Unhide
uh9sfgd  
Registered
60
Posts
1
Threads
1 Year of service
#6
thank u so much!, that helps me really :)
This post is by a banned member (NAGZ) - Unhide
NAGZ  
Registered
85
Posts
10
Threads
2 Years of service
#7
(This post was last modified: 17 September, 2023 - 10:05 PM by NAGZ.)
(17 September, 2023 - 12:33 PM)wasteheek Wrote: Show More
Use requests or if the site has some kind of protection, tls_client for making requests to the server.
Use threading package for making multiple requests at the same time which allows you to check accounts faster.
Steps:
1. Go to your browser and press F12 and then click Network
2. Login to a valid account
3. Look at the apis called
You'll probably see something like this:
https://example.com/api/login
Click on it and then click on the request tab, you'll see some JSON shit.
4. open up an ide and start replicating the same request
5. ???
6. profit
example code:
request = requests.post("https://example.com/api/login",json={"username":"example","password":"examplepassword"}).json()
and then you can parse the json response like this:
is_valid = request["is_valid"]

Start doing this with some small site since those don't usually have the best protection against these attacks.

Good luck

Nice answers tbh 
But how he gonna do when he gonna try sites with CSRF or CF  [Image: kek.png]
This post is by a banned member (uh9sfgd) - Unhide
uh9sfgd  
Registered
60
Posts
1
Threads
1 Year of service
#8
what is CSRF or CF

Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
or
Sign in
Already have an account? Sign in here.


Forum Jump:


Users browsing this thread: 4 Guest(s)