mBot crack Error during authorisation

07/18/2020 11:18 vietnguyen09#1
Hi guys,

I'm currently working on a shared source by [Only registered and activated users can see links. Click Here To Register...] from [Only registered and activated users can see links. Click Here To Register...].

His code works with HttpListenerContext fine but I don't know why I keep getting Error during authorisation.

I think the problem is from this part at responseText that return wrong content from auth.psro.mbot.1.php. I have been searching everywhere for the correct response but unlucky.

Code:
if (req.Url.ToString().Contains("pa/auth.psro.mbot.1.php"))
{
	var resp = context.Response;
	resp.Headers.Add("Content-type", "text/plain;charset=UTF-8");
	string responseText = "@0.2CEA9DD0D41A2E06FD2F3D628566247BB14E114E594767090FEDAFC3169D92CA2CA3918B2EB4C38E3D8F38822D9754E0238C3DFD4DFF50945096248B398330842BEF2BEF2B84408440842BEF2BEF2B5419A80A09CA1D07.AC69C053AA000000009874780E@";
	resp.ContentLength64 = responseText.Length;
	var stream = resp.OutputStream;
	stream.Write(Encoding.UTF8.GetBytes(responseText), 0, responseText.Length);
	stream.Close();
}
Any idea to fix this?
07/19/2020 05:07 JellyBitz#2
Instead text length, bytes length maybe?
PHP Code:
bytes[] buffer Encoding.UTF8.GetBytes(responseText);
stream.Write(buffer 0buffer.Length); 
Here the files used for autologin by using Loopback Adapter and web server if you have doubts.
07/20/2020 05:48 vietnguyen09#3
Quote:
Originally Posted by JellyBitz View Post
Instead text length, bytes length maybe?
PHP Code:
bytes[] buffer Encoding.UTF8.GetBytes(responseText);
stream.Write(buffer 0buffer.Length); 
Here the files used for autologin by using Loopback Adapter and web server if you have doubts.
Thanks for your reply. I can see your files content is extractly same as me, I'm change to byte length but still getting error. Do I use the wrong mBot version? I'm currently using mBot v1.12b. Can I have your mbot version?

Event I create the hosted with real IP myself still getting error.
07/21/2020 07:55 JellyBitz#4
Quote:
Originally Posted by vietnguyen09 View Post
Event I create the hosted with real IP myself still getting error.
Hmm.. Make sure the IP is routed correctly to your local server.

The loopback adapter is necessary to create the rules about IP redirecting.
You can confirm this behavior by typing "tracert -d 5.34.183.175"

Also check the local server is accepting connections by checking from your browser the path like "http://5.34.183.175/pa/auth.psro.mbot.1.php".

Ah, remember to clear cache after making the process to force the new DNS resolution, just use "ipconfig /flushdns"

It also depends on mBot, some Loaders correct this IP to another one.. It could be checked from Resource monitor > Red > TCP connections when you click on Login.

At my case it's the mentioned IP above, It's just the original crack with patched dll.
[Only registered and activated users can see links. Click Here To Register...]
_________

I'm using sBot, not mBot actually because I had some issues about mBot not recognizing objects on server that I'm playing (I'm the lucky 5% people with this problem, yey?)

But I just checked that everything is working as expected:
[Only registered and activated users can see links. Click Here To Register...]
07/21/2020 09:07 vietnguyen09#5
Quote:
Originally Posted by JellyBitz View Post
Hmm.. Make sure the IP is routed correctly to your local server.

The loopback adapter is necessary to create the rules about IP redirecting.
You can confirm this behavior by typing "tracert -d 5.34.183.175"

Also check the local server is accepting connections by checking from your browser the path like "http://5.34.183.175/pa/auth.psro.mbot.1.php".

Ah, remember to clear cache after making the process to force the new DNS resolution, just use "ipconfig /flushdns"

It also depends on mBot, some Loaders correct this IP to another one.. It could be checked from Resource monitor > Red > TCP connections when you click on Login.

At my case it's the mentioned IP above, It's just the original crack with patched dll.
[Only registered and activated users can see links. Click Here To Register...]
_________

I'm using sBot, not mBot actually because I had some issues about mBot not recognizing objects on server that I'm playing (I'm the lucky 5% people with this problem, yey?)

But I just checked that everything is working as expected:
[Only registered and activated users can see links. Click Here To Register...]
Thanks for your very detail answer, I'm actually trying to making a crack for my own server. I can use ElectusMBOT crack as well but it always open Electus fanpage. Howerver, I am really curious about how ElectusMBOT is so good.
07/21/2020 10:09 Devsome#6
You can use this mBot Crack dll
[Only registered and activated users can see links. Click Here To Register...]
07/21/2020 10:26 vietnguyen09#7
Solved, thanks guy for helping me. Request close, @[Only registered and activated users can see links. Click Here To Register...] @[Only registered and activated users can see links. Click Here To Register...].