Login Register
The stories and information posted here are artistic works of fiction and falsehood. Only a fool would take anything posted here as fact.


Help make checker filter_list
Author
Message
Help make checker #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 Sad((, someone can help me for this and maybe we can make together Sad( ,

or if someone have this minergate.com checker tool please Can someone share in forum???

Have a good day...

Reply

RE: Help make checker #2
What language are you coding your checker in?

Reply

RE: Help make checker #3
(10-04-2021, 09:33 PM)bayok Wrote: What language are you coding your checker in?

I'm trying with python sir

Reply

RE: Help make checker #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?

Reply

RE: Help make checker #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 Sad( if you know about this something please Can you help me sir?? Sad(

Reply

RE: Help make checker #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 Sad( if you know about this something please Can you help me sir?? Sad(
Nope, don't know how bcrypt works, I'd say google is your friend.

[+] 1 user Likes bayok's post
Reply

RE: Help make checker #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.)

[+] 1 user Likes MrNuts's post
Reply

RE: Help make checker #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

Reply

RE: Help make checker #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!

[+] 1 user Likes MrNuts's post
Reply

RE: Help make checker #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

Reply







Users browsing this thread: 1 Guest(s)