Coding a Cracker
I just installed requests (it looks easier to use) so, i'm gonna try and reproduce what you've done with requests to crack fitbit accounts, might need help with opening the file and splitting the combos. I'll keep you posted.
Well thanks for the information. I'll have to check this out later cuz for some reason I get errors importing requests into the python default IDLE but not when I use my terminal.
This isn't my area of expertise but I'd say try to borrow (not steal) some code from other crackers.
Okay guys, so, I haven't worked on it for a long time but I thought about it today I did a bit more research and I encountered a problem. For now, the username and password to test on fitbit.com are stored in 2 variables and so that means that I have to stop the program everytime they have been checked and change the combo to test another one. So, what I want to do is open a file called "combolist.txt" and for each line (one combo per line in email
ass format), split the email and temporarily store it in the username variable and split the password and store it in the password variable. Once that's done the program will test this combo for fitbit.com and return the result. Once it has tested it, it will go to the next line of the combolist.txt file and repeat the process. How can I open the file and split the combo accordingly and store the string in the 2 variables in python? Any help would be very appreaciated!!
Btw here's what I have so far:
Code:
f = open("combolist.txt", "r")
for combo in f:
f.split(":")
I know it's probably wrong but that's why I'm asking for help. Thank you !
ass format), split the email and temporarily store it in the username variable and split the password and store it in the password variable. Once that's done the program will test this combo for fitbit.com and return the result. Once it has tested it, it will go to the next line of the combolist.txt file and repeat the process. How can I open the file and split the combo accordingly and store the string in the 2 variables in python? Any help would be very appreaciated!!Btw here's what I have so far:
Code:
f = open("combolist.txt", "r")
for combo in f:
f.split(":")
I know it's probably wrong but that's why I'm asking for help. Thank you !
Code:
with open('file.txt', 'r') as combolist:
for combo in combolist:
split = combo.split()
if len(split) < 2:
continue
username = split[0]
password = split[1]
# Attempt login here
So that's the code:
Sorry, for answering so late, I was off mpgh for a while, thanks for the info.
Code:
with open('file.txt', 'r') as combolist:
for combo in combolist:
split = combo.split(:)
if len(split) < 2:
continue
username = split[0]
password = split[1]
# Attempt login here
I have sad news for you... fitbit website is loaded dynamicaly with js, so requests wont work well (at least ony experience. I might be wrong ofc)
Similar Threads
Selling Accounts/Keys/ItemsSelling Brute Force/Cracker Source CodeJO 3 Adventure Quest Worlds (AQW) HelpAQW code crackers...VI 1 Selling Accounts/Keys/ItemsMinecraft Cracker / Gift Code Methods / MC Accounts / Poison Plugin
17 Rust Discussions & HelpHow long till a code cracker comes out XDSA 0 Trade Accounts/Keys/ItemsSell pw cracker for runescape for retail code!!!MA 11

