![]() |
|
Help make checker - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Hacking (https://sinister.ly/Forum-Hacking) +--- Forum: Tutorials (https://sinister.ly/Forum-Tutorials) +---- Forum: Requests (https://sinister.ly/Forum-Requests--826) +---- Thread: Help make checker (/Thread-Help-make-checker) Pages:
1
2
|
Help make checker - beton - 10-04-2021 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... RE: Help make checker - bayok - 10-04-2021 What language are you coding your checker in? RE: Help make checker - beton - 10-05-2021 (10-04-2021, 09:33 PM)bayok Wrote: What language are you coding your checker in? I'm trying with python sir RE: Help make checker - bayok - 10-05-2021 (10-05-2021, 10:24 AM)beton Wrote: I'm trying with python sirGood luck, have you implemented proxies that rotate upon each request? RE: Help make checker - beton - 10-06-2021 (10-05-2021, 10:20 PM)bayok Wrote:(10-05-2021, 10:24 AM)beton Wrote: I'm trying with python sirGood 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?? (
RE: Help make checker - bayok - 10-06-2021 (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 knowNope, don't know how bcrypt works, I'd say google is your friend. RE: Help make checker - MrNuts - 10-06-2021 (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. RE: Help make checker - beton - 10-07-2021 (10-06-2021, 09:12 PM)MrNuts Wrote:(10-06-2021, 09:25 AM)beton Wrote: no, not yet sir, I need bypass bcrypt (...) 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 RE: Help make checker - MrNuts - 10-07-2021 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! RE: Help make checker - beton - 10-08-2021 (10-07-2021, 01:27 PM)MrNuts Wrote: bcrypt = password hashing, NOT encryption hmm, ok sir, I understand , if I give my time for this it's gonna be waste, ok Thank you very much |