The stories and information posted here are artistic works of fiction and falsehood. Only a fool would take anything posted here as fact.
Six Years of Service
Posts: 116
Threads: 67
Help make checker 10-04-2021, 09:02 PM
#1
Hi, I want make checker for minergate.com site, I tried make checker but I failed because site protecting wtih Bcrypt, I think Bcrypt decrypter can add to checker but I don't know how to add decrypter to checker

((, someone can help me for this and maybe we can make together

( ,
or if someone have this minergate.com checker tool please Can someone share in forum???
Have a good day...
•
Four Years of Service
Posts: 92
Threads: 8
RE: Help make checker 10-04-2021, 09:33 PM
#2
What language are you coding your checker in?
•
Six Years of Service
Posts: 116
Threads: 67
RE: Help make checker 10-05-2021, 10:24 AM
#3
(10-04-2021, 09:33 PM)bayok Wrote: What language are you coding your checker in?
I'm trying with python sir
•
Four Years of Service
Posts: 92
Threads: 8
RE: Help make checker 10-05-2021, 10:20 PM
#4
(10-05-2021, 10:24 AM)beton Wrote: I'm trying with python sir
Good luck, have you implemented proxies that rotate upon each request?
•
Six Years of Service
Posts: 116
Threads: 67
RE: Help make checker 10-06-2021, 09:25 AM
#5
(10-05-2021, 10:20 PM)bayok Wrote: (10-05-2021, 10:24 AM)beton Wrote: I'm trying with python sir
Good luck, have you implemented proxies that rotate upon each request?
no, not yet sir, I need bypass bcrypt but I don't know how, and How Can add to python that I don't know

( if you know about this something please Can you help me sir??

(
•
Four Years of Service
Posts: 92
Threads: 8
RE: Help make checker 10-06-2021, 08:29 PM
#6
(10-06-2021, 09:25 AM)beton Wrote: no, not yet sir, I need bypass bcrypt but I don't know how, and How Can add to python that I don't know
( if you know about this something please Can you help me sir??
(
Nope, don't know how bcrypt works, I'd say google is your friend.
The following 1 user Likes bayok's post:1 user Likes bayok's post
• beton
Nine Years of Service
Posts: 10
Threads: 0
RE: Help make checker 10-06-2021, 09:12 PM
#7
(10-06-2021, 09:25 AM)beton Wrote: no, not yet sir, I need bypass bcrypt (...)
... if your checker does not work, there are other problems than bcrypt!
There is no need to bypass bcrypt which is a password hashing function. If you want to create a
checker, make sure you do not run into captchas or other blocking precautions, e.g. by using rotating proxys like @
bayok said. Or check out the Minergate API which should be a good point to start with.
(This post was last modified: 10-06-2021, 09:14 PM by MrNuts.)
Six Years of Service
Posts: 116
Threads: 67
RE: Help make checker 10-07-2021, 11:01 AM
#8
(10-06-2021, 09:12 PM)MrNuts Wrote: (10-06-2021, 09:25 AM)beton Wrote: no, not yet sir, I need bypass bcrypt (...)
... if your checker does not work, there are other problems than bcrypt!
There is no need to bypass bcrypt which is a password hashing function. If you want to create a checker, make sure you do not run into captchas or other blocking precautions, e.g. by using rotating proxys like @bayok said. Or check out the Minergate API which should be a good point to start with.
Thank you sir I understand and I get api already , checker is not working because email:pass protecting with bcrypt, for this I don't know how to add decrypter in to checker , Thank you again
•
Nine Years of Service
Posts: 10
Threads: 0
RE: Help make checker 10-07-2021, 01:27 PM
#9
bcrypt = password hashing, NOT encryption
you need to "guess" password and salt, then hash the password and see whether the hashes match ... no bypass, only brute-force using the bcrypt module for Python (see:
https://pypi.org/project/bcrypt/) ... but that is a waste of time! even with a given salt, it takes way to long this way.
making it short: get non-encrypted combos!
Six Years of Service
Posts: 116
Threads: 67
RE: Help make checker 10-08-2021, 10:06 AM
#10
(10-07-2021, 01:27 PM)MrNuts Wrote: bcrypt = password hashing, NOT encryption
you need to "guess" password and salt, then hash the password and see whether the hashes match ... no bypass, only brute-force using the bcrypt module for Python (see: https://pypi.org/project/bcrypt/) ... but that is a waste of time! even with a given salt, it takes way to long this way.
making it short: get non-encrypted combos!
hmm, ok sir, I understand , if I give my time for this it's gonna be waste, ok Thank you very much
•
Users browsing this thread: 1 Guest(s)