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

cracked.io | Best Forum Around | Free Premium Accounts




 22996

How to make an account checker using Python ?

by wraithM17 - 20 May, 2019 - 05:47 PM
This post is by a banned member (wraithM17) - Unhide
wraithM17  
Registered
40
Posts
4
Threads
4 Years of service
#1
So I'm a noob at hacking , in fact I've not even started hacking yet and need some serious help.
First of all, I'm an intermediate in Python and I'm confused as to which libraries do I have to use to make an account checker say spotify or steam.
I know that Requests is used but I'm really confused and I don't know which other libraries are used (I don't need gui, it'll work with cli)

So yeah I'd be really happy if someone can tell me stuff about this and I'd appreciate more if someone can send some video tutorials (I don't really find good ones out there) and a source code for learning will also be much appreciated.

Thanks a ton in advance :)
This post is by a banned member (esdffsdfsdf) - Unhide
This post is by a banned member (Vassilios) - Unhide
Vassilios  
Supreme
271
Posts
38
Threads
4 Years of service
#3
Threading and requests is the way to go.
[Image: 1724cf64e5e5b1b73c593976bf4643a6.png]
This post is by a banned member (wraithM17) - Unhide
wraithM17  
Registered
40
Posts
4
Threads
4 Years of service
#4
(This post was last modified: 20 May, 2019 - 06:03 PM by wraithM17.)
(20 May, 2019 - 05:50 PM)Vassilios Wrote: Show More
Threading and requests is the way to go.

Thanks for your answer.
I really want to know about this module Threading since I know nothing about it.
How exactly will it help me in making an account checker ?

(20 May, 2019 - 05:48 PM)esdffsdfsdf Wrote: Show More
See all parts this is part 1 : https://www.youtube.com/watch?v=r4araFs_MOE
you can see more parts of channel

I have tried that tutorial series but I don't really like tutorials with any commentary / speaking.
Any with commentary ?
This post is by a banned member (Vassilios) - Unhide
Vassilios  
Supreme
271
Posts
38
Threads
4 Years of service
#5
(20 May, 2019 - 06:01 PM)wraithM17 Wrote: Show More
(20 May, 2019 - 05:50 PM)Vassilios Wrote: Show More
Threading and requests is the way to go.

Thanks for your answer.
I really want to know about this module Threading since I know nothing about it.
How exactly will it help me in making an account checker ?

To keep it simple, without Threading it will check one account after the other. With Threading it will check multiple accounts at the same time.
[Image: 1724cf64e5e5b1b73c593976bf4643a6.png]
This post is by a banned member (zacafran380) - Unhide
31
Posts
0
Threads
5 Years of service
Warned #6
Nice bro hgsyhjj
This post is by a banned member (kernel00) - Unhide
kernel00  
Registered
9
Posts
1
Threads
4 Years of service
#7
Lets say you want to crack accounts for a page called example.com. What you have to do is:
- Find the address where username and password are being send to check if they are correct or not:
You can do this doing inspect element on the page, then click on network section, there you will see all the traffic that is being send from that page. Then click login button and find out where they are being send. You can learn more on how to do this on any youtube tutorial.
- Make the python application. You will only need requests library for a simple cracker:
You have to send the user and password to the URL that you find in the previous step using the correct method (post or get)
Then you probably going to get an answer from the server saying if the password was correct. Some pages do this with a 200 code, others use different methods, you have to find witch is being used on your website.
And that is basically it.
If you didn't understand what i write you can check this tutorial that i found on internet: https://www.youtube.com/watch?v=fmf_y8zpOgA

Here is an example:
import Requests

payload = {"username":"yourusername","password":"yourpassword"}

login = Requests.post("https://example.com/login", json=payload)

if login.status_code == "200":
print("Correct username and password")
else:
print("Incorrect username and password")

In some websites you will need to change your user agent and keep some cookies because they will know you are not a real user and block you (you can find out how to do this on internet, it's not hard).

Good luck and sorry for my bad English.
This post is by a banned member (domozo) - Unhide
domozo  
Registered
1
Posts
0
Threads
4 Years of service
#8
(This post was last modified: 08 August, 2019 - 10:23 AM by domozo.)
You are the real hero boss

Very nice post bro u are real hero

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: 2 Guest(s)