Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Path of Exile
You last visited: Today at 21:59

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



How to crack authentication for Exiled Bot v0.50f

Discussion on How to crack authentication for Exiled Bot v0.50f within the Path of Exile forum part of the MMORPGs category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Jun 2014
Posts: 44
Received Thanks: 57
How to crack authentication for Exiled Bot

This fakes authentication for Exiled Bot v0.60
- see post

# INSTALL
1. Download and unpack to a folder
2. Install latest
- make sure to check "Add Python to PATH" when installing
3. Download and install ()
4. Start "exauth_setup.bat" from ZIP as Administrator
5. Edit hosts-file as Administrator and add a new line "127.0.0.1 exiled-bot.net"
7. Copy config.ini from zip to bot's folder Configuration/default/config.ini.

7. Get the latest offsets from this post and replace the old ones in the script.

# RUN
8. Start "exauth.bat" from ZIP as Administrator (This has to be running while the bot is used.)
9. Start bot and type some username and password.
10. Farm stuff.


NOTES:
- This thread is long and old, if you want infos, read from the back. New stuff starts around page 13-14 or so.
- It is also possible to use one crack for a whole set of VMs, in that case setup the crack on the host machine and use the VMs' hosts-file to redirect exiled-bot.net to the hosts IP. So per VM you only have to change the hosts-file and not install all that stuff.
- You can even run the crack on a linux-host to be used from VMs running windows. (depending on versions some changes may be needed to the script (replace libmproxy with mitmproxy) but it works)
- This is all just for the lulz.

GETTING OFFSETS IF YOU HAVE A LICENSE:
- Use extra copy of bot so to not mess up the cracked config.
- Install and start the crack.
- Use your license to login.
- The crack's log-window will show the offsets.
- Copy and paste the offsets to forum.
- Make sure you do not add any extra spaces, or remove them before posting.
0x029A is offline  
Thanks
21 Users
Old 07/26/2015, 00:08   #2
 
elite*gold: 0
Join Date: Jul 2015
Posts: 2
Received Thanks: 0
I apologize. I understand terribly English. I will be very grateful if you create video. Thanks in advance
maxiaxi is offline  
Old 07/26/2015, 02:16   #3
 
elite*gold: 0
Join Date: Jun 2014
Posts: 44
Received Thanks: 57
i won't make a video, sorry. it wouldn't help you much as i do not use windows anyways. maybe somebody else will.
here is an edited version of v0.50f dll.
but you still need to setup a server or otherwise spoof the http response with XML from the first post.
0x029A is offline  
Old 07/26/2015, 07:51   #4
 
elite*gold: 0
Join Date: May 2010
Posts: 3
Received Thanks: 0
Quote:
Originally Posted by 0x029A View Post
i won't make a video, sorry. it wouldn't help you much as i do not use windows anyways. maybe somebody else will.
here is an edited version of v0.50f dll.
but you still need to setup a server or otherwise spoof the http response with XML from the first post.
cant downlaod the file on that and ive tried everythign also can u show me where ur suppose to put that responce in fiddler
staber339 is offline  
Old 07/26/2015, 13:38   #5
 
elite*gold: 0
Join Date: Jul 2015
Posts: 2
Received Thanks: 0
People if at someone it turned out create video please. It is impossible to me
maxiaxi is offline  
Old 07/26/2015, 17:48   #6
 
elite*gold: 0
Join Date: Jun 2014
Posts: 44
Received Thanks: 57
the download works, but editing the file yourself really isn't that hard. it's one search and replacing 8 characters with 0s. you could use hxd for example to do this ().

for fiddler you can use the autoresponder to return contents of a file when exiled-bot.net/community/interface/licenses.php is requested. the file returned would contain the above XML.

another method would be to use a webserver. you can run a small free one easily on windows.
miniweb () should work, start it with "miniweb.exe -p 443" and create in the miniweb folder htdocs/community/interface/licenses.php with the above XML as content. then set windows's hosts file to resolve exiled-bot.net to localhost.

i know this is a bit complicated if you haven't done something like this before, but it works.
somebody more skilled in reverse-engineering could probably make a fully cracked dll rather easily, but as it works right now i don't really have the ambition.
0x029A is offline  
Old 07/26/2015, 18:50   #7
 
elite*gold: 0
Join Date: Apr 2009
Posts: 5
Received Thanks: 1
it's not works on iis.
miniweb won't lauch on 443 port

Code:
Host: 192.168.2.1:443
Web root: htdocs
Max clients (per IP): 32 (16)
URL handlers: 2
Dir listing enabled
Error starting HTTP server
i guess windows blocking 443 port

i got what wrong with server: C:\> netstat -aon | findstr 0.0:443
Wmware service was listen 443 port i stoped it and now it works, but bot shows Elite status as free user i used your dll
also bot stops after 45lvl.

server log:

seems crack works but im still Free user i typed some **** in user/key and it said unlocked but Elite status still Free user and bot stops after 45lvl.
Ronya is offline  
Old 07/26/2015, 20:36   #8
 
elite*gold: 0
Join Date: Jun 2014
Posts: 44
Received Thanks: 57
ronya: have you setup you windows hosts file? i think recent windows versions have it at C:\Windows\System32\Drivers\etc\hosts
you need to add a line to have exiled-bot.net be redirected to your webserver. probably something like
localhost exiled-bot.net
or
192.168.2.1 exiled-bot.net
(the ip miniweb uses)
so that when the bot tries to reach exiled-bot.net it reaches your server instead.
also have you placed the xml in the right directory?

you can verify is the webserver/redirect work by calling in your browser - it should give you the xml.

that being said i use an external webserver with the following php to respond with the xml above:
<?php
header("Content-type: text/xml; charset=utf-8");
$xml = file_get_contents('php://input');
if(strpos($xml,"activate") !== false) {
echo '<?xml version="1.0" ?>
<methodResponse>
<params>
<param>
<value>
<struct>
<member>
<name>RESPONSE</name>
<value><string>OKAY</string></value>
</member>
<member>
<name>USAGE_ID</name>
<value><int>1</int></value>
</member>
</struct>
</value>
</param>
</params>
</methodResponse>
';
} else {
echo '<?xml version="1.0" ?>
<methodResponse>
<params>
<param>
<value>
<struct>
<member>
<name>STATUS</name>
<value><string>ACTIVE</string></value>
</member>
<member>
<name>USES</name>
<value><int>1</int></value>
</member>

<member>
<name>MAX_USES</name>
<value><int>100</int></value>
</member>
</struct>
</value>
</param>
</params>
</methodResponse>
';
}
?>

but i don't think miniweb can do php - for the above script you have to use a different webserver with php support.

edit: did not see your log on the first read - seems redirection is fine. try a php-enabled webserver with the script above.
0x029A is offline  
Old 07/26/2015, 20:43   #9
 
elite*gold: 0
Join Date: Apr 2009
Posts: 5
Received Thanks: 1
in my hosts: 192.168.2.1 exiled-bot.net
path: miniweb\htdocs\community\interface\licenses.php

as you can see on miniweb server screen the bot connects to licenses.php that's mean everything is correct
Ronya is offline  
Old 07/26/2015, 21:02   #10
 
elite*gold: 0
Join Date: Jun 2014
Posts: 44
Received Thanks: 57
see updated answer. i think i forgot in my first post that i return 2 sets of XML depending on the bot's request and used a php-script for that. i thought it wasn't necessary anymore, but it seems it still is. the above php script is what i am currently using as licenses.php and it works. anyway your logs show your redirection working, and you managed to setup a server at all - so you're on the right track. keep trying.
the plus with this method is that it allows the bot to run in hidden mode, instead of normal mode like the other crack. it has to say "elite user" in the status, the message doesn't mean anything.
0x029A is offline  
Old 07/26/2015, 21:17   #11
 
elite*gold: 0
Join Date: Apr 2009
Posts: 5
Received Thanks: 1
Its worked with your new xml code in the php server!!!

I used Quick php server:

Thank you very much!
Ronya is offline  
Thanks
1 User
Old 07/26/2015, 21:28   #12
 
elite*gold: 0
Join Date: Jun 2014
Posts: 44
Received Thanks: 57
congrats! you get a thanks for not giving up after 1 try.
0x029A is offline  
Old 07/26/2015, 23:27   #13
 
elite*gold: 0
Join Date: May 2010
Posts: 3
Received Thanks: 0
Quote:
Originally Posted by 0x029A View Post
see updated answer. i think i forgot in my first post that i return 2 sets of XML depending on the bot's request and used a php-script for that. i thought it wasn't necessary anymore, but it seems it still is. the above php script is what i am currently using as licenses.php and it works. anyway your logs show your redirection working, and you managed to setup a server at all - so you're on the right track. keep trying.
the plus with this method is that it allows the bot to run in hidden mode, instead of normal mode like the other crack. it has to say "elite user" in the status, the message doesn't mean anything.
how do u download it says i need premium
staber339 is offline  
Old 07/27/2015, 00:59   #14
 
elite*gold: 0
Join Date: Jun 2014
Posts: 44
Received Thanks: 57
click on the left button where it says free user.
0x029A is offline  
Old 07/28/2015, 11:30   #15
 
elite*gold: 0
Join Date: Oct 2010
Posts: 4
Received Thanks: 0
it's working thx !

edit : here is how it should looks like :
skygon is offline  
Reply


Similar Threads Similar Threads
ZextileV2.2 - New and improved Exiled-Bot Crack! (v0.27+)
05/26/2015 - Path of Exile - 6 Replies
Tested up to: v0.27 Crack Download Link: http://gotcracked.ca/download/Zektxilev2.2.rar Password: Cracked by Zektor! Instructions: (You must do step 3 to 5 if you are running the bot the first time!) 1. Copy Zektxile.exe & zektor.dll to the Exiled-Bot directory
ZextileV2.1 - New and improved Exiled-Bot Crack! (v0.24j+)
01/05/2015 - Path of Exile - 5 Replies
Tested up to: v0.24j Crack Download Link: http://gotcracked.ca/download/Zektxilev2.1.rar Password: Cracked by Zektor Instructions: 1. Register on gotcracked.ca for free 2. Copy Zektxile.exe & zektor.dll to the Exiled-Bot directory
Exiled Bot Beta v0.21g Zektxile Crack HELP
11/07/2014 - Path of Exile - 22 Replies
Any one know any one have any one can help with Exiled Bot Beta v0.21g Crack? :handsdown::handsdown::handsdown::handsdown:
Exiled Bot Crack Guide
05/02/2014 - Path of Exile - 87 Replies
google and download OllyDbg V1.10 and these plugins: ODBGScript v1.82.6 StrongOD 0.4.8.892 PhantOm 1.79 copy the plugins into plugin folder start ollydbg, click plugins -> PhantOm -> Options check -protect DRx, uncheck everything else, save
No method to crack Exiled Bot?
04/14/2014 - Path of Exile - 5 Replies
Help us.. we need a bot :(



All times are GMT +1. The time now is 21:59.


Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2025 elitepvpers All Rights Reserved.