|
You last visited: Today at 17:20
Advertisement
Free Lineage 2 Revolution Bot (DJMBot)
Discussion on Free Lineage 2 Revolution Bot (DJMBot) within the Lin2 Exploits, Hacks, Bots, Tools & Macros forum part of the Lineage 2 category.
03/19/2018, 23:17
|
#31
|
elite*gold: 0
Join Date: Mar 2018
Posts: 6
Received Thanks: 5
|
Quote:
Originally Posted by ZanTir
Sry but i have no idea what you are talking about @ 
Any chance to get your workaround for noobs 
|
WARNING: This way I can technically see your password, you have to trust me I won't look or create new acc.
edit your hosts:
79.120.77.14
Then you'll have to visit  with IE and add my cert for djmbot.com to trusted (If IE does not complain, bot will work too)
Some AV might protect your hosts/dns, I won't help there.
Login with valid login/pass, it should give you Haxx account instead or Free and full features.
|
|
|
03/20/2018, 23:21
|
#32
|
elite*gold: 0
Join Date: Mar 2018
Posts: 2
Received Thanks: 0
|
Quote:
Originally Posted by starbreeze111
WARNING: This way I can technically see your password, you have to trust me I won't look or create new acc.
edit your hosts:
79.120.77.14
Then you'll have to visit  with IE and add my cert for djmbot.com to trusted (If IE does not complain, bot will work too)
Some AV might protect your hosts/dns, I won't help there.
Login with valid login/pass, it should give you Haxx account instead or Free and full features.
|
i have already bought a license but feels scammed by the developer as you can't multi-instance unless you buy a license for each of your characters: i have 3. i tried your method but unfortunately mitmproxy doesn't work on my network and your host just says "booooo"? if you can show me how to do it on my own, that would be awesome.
|
|
|
03/21/2018, 03:54
|
#33
|
elite*gold: 0
Join Date: Jan 2009
Posts: 2
Received Thanks: 0
|
Quote:
Originally Posted by starbreeze111
WARNING: This way I can technically see your password, you have to trust me I won't look or create new acc.
edit your hosts:
79.120.77.14
Then you'll have to visit  with IE and add my cert for djmbot.com to trusted (If IE does not complain, bot will work too)
Some AV might protect your hosts/dns, I won't help there.
Login with valid login/pass, it should give you Haxx account instead or Free and full features.
|
-solve, my vpn is on
|
|
|
03/21/2018, 06:05
|
#34
|
elite*gold: 0
Join Date: Mar 2018
Posts: 6
Received Thanks: 5
|
Quote:
Originally Posted by greatpanda1k
i have already bought a license but feels scammed by the developer as you can't multi-instance unless you buy a license for each of your characters: i have 3. i tried your method but unfortunately mitmproxy doesn't work on my network and your host just says "booooo"? if you can show me how to do it on my own, that would be awesome.
|
"booo" means you are connecting to wrong apache "host", i.e. just connecting by IP, not to  .
Actual check URL is:
For the mitmproxy, bot seems to ignore proxy settings when it does auth, so you can't just run mitmproxy and change IE proxy setting to point to it.
I had to run it on another pc (or in virtualbox), that can connect to real  . On bot PC you edit hosts file to point to it, then it will work.
|
|
|
03/21/2018, 08:04
|
#35
|
elite*gold: 0
Join Date: Mar 2018
Posts: 2
Received Thanks: 0
|
Quote:
Originally Posted by starbreeze111
"booo" means you are connecting to wrong apache "host", i.e. just connecting by IP, not to  .
Actual check URL is:
For the mitmproxy, bot seems to ignore proxy settings when it does auth, so you can't just run mitmproxy and change IE proxy setting to point to it.
I had to run it on another pc (or in virtualbox), that can connect to real  . On bot PC you edit hosts file to point to it, then it will work.
|
thank you. i got it working on your ip for now. will try to set up my own. i have never used mitmproxy before so it's kinda hard for me.
|
|
|
03/22/2018, 07:24
|
#36
|
elite*gold: 0
Join Date: Mar 2018
Posts: 6
Received Thanks: 5
|
It has to be on another pc, can be virtualbox, because you need to redirect bot to your own ip in hosts.
Needs apache, php, php-curl and generate your own ssl-cert for
apisys/lin2rev/index.php:
Code:
<?php
$url = "https://www.djmbot.com".$_SERVER['REQUEST_URI'];
$postfields = array('data'=>$_POST['data']);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postfields);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
$result = curl_exec($ch);
$free = '323237303732363937363639366336353637363532323361323233303330333132323263323237303732363937363639366336353637363534343635373336333232336132323436373236353635323034313633363336663735366537343232';
$haxx = '323237303732363937363639366336353637363532323361323233393339333932323263323237303732363937363639366336353637363534343635373336333232336132323438363137383738323034313633363336663735366537343232';
echo str_replace($free,$haxx,$result);
?>
My rewrite rules:
Code:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^/apisys/lin2rev/.*$ /apisys/lin2rev/index.php [NC,L,QSA]
|
|
|
03/22/2018, 07:47
|
#37
|
elite*gold: 0
Join Date: Feb 2009
Posts: 4
Received Thanks: 0
|
Quote:
Originally Posted by starbreeze111
It has to be on another pc, can be virtualbox, because you need to redirect bot to your own ip in hosts.
Needs apache, php, php-curl and generate your own ssl-cert for
apisys/lin2rev/index.php:
Code:
<?php
$url = "https://www.djmbot.com".$_SERVER['REQUEST_URI'];
$postfields = array('data'=>$_POST['data']);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postfields);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
$result = curl_exec($ch);
$free = '323237303732363937363639366336353637363532323361323233303330333132323263323237303732363937363639366336353637363534343635373336333232336132323436373236353635323034313633363336663735366537343232';
$haxx = '323237303732363937363639366336353637363532323361323233393339333932323263323237303732363937363639366336353637363534343635373336333232336132323438363137383738323034313633363336663735366537343232';
echo str_replace($free,$haxx,$result);
?>
My rewrite rules:
Code:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^/apisys/lin2rev/.*$ /apisys/lin2rev/index.php [NC,L,QSA]
|
hi,
can i do this on my own pc?
and how do i get this $free and $haxx code?
and what should i do if i want to connect to your server?
thank you
|
|
|
03/26/2018, 03:11
|
#38
|
elite*gold: 0
Join Date: Mar 2018
Posts: 6
Received Thanks: 5
|
Quote:
Originally Posted by splinterz
can i do this on my own pc?
|
Yes, but you need to trick djmbot to not connect directly despite any IE/OS proxy settings.
Edititng hosts file works, but when you do that, you either need to host that proxy on another pc/virtualbox (my way, I have a nas for that) or you can change php script to connect to real  by IP and set Host header manually.
Quote:
|
and how do i get this $free and $haxx code?
|
$free is just '"privilege":"001","privilegeDesc":"Free Account"' hex encoded twice, $haxx is same, but "999" and "Haxx Account". This should be good for everyone until something has changed.
Quote:
|
and what should i do if i want to connect to your server?
|
1) edit your hosts file and add 79.120.77.14 
(Antiviruses might block that - deal with it yourself)
2) open IE, go to  - ignore warnings, should get a simple text that you are on the right track.
3) Last you need to import that certificate, IE is complaining about as trusted.
(after restarting browser and connecting again you should get no warning)
4) Run bot with any free account login/pass and bot will think you have paid account.
|
|
|
03/26/2018, 08:05
|
#39
|
elite*gold: 0
Join Date: Feb 2009
Posts: 4
Received Thanks: 0
|
Quote:
Originally Posted by starbreeze111
Yes, but you need to trick djmbot to not connect directly despite any IE/OS proxy settings.
Edititng hosts file works, but when you do that, you either need to host that proxy on another pc/virtualbox (my way, I have a nas for that) or you can change php script to connect to real  by IP and set Host header manually.
$free is just '"privilege":"001","privilegeDesc":"Free Account"' hex encoded twice, $haxx is same, but "999" and "Haxx Account". This should be good for everyone until something has changed.
1) edit your hosts file and add 79.120.77.14 
(Antiviruses might block that - deal with it yourself)
2) open IE, go to  - ignore warnings, should get a simple text that you are on the right track.
3) Last you need to import that certificate, IE is complaining about as trusted.
(after restarting browser and connecting again you should get no warning)
4) Run bot with any free account login/pass and bot will think you have paid account.
|
ah ok i get it now thanks
|
|
|
03/26/2018, 08:14
|
#40
|
elite*gold: 0
Join Date: Mar 2018
Posts: 6
Received Thanks: 5
|
Quote:
Originally Posted by splinterz
ah ok i get it now..
is there any way to limit which username can connect to my host?
cause i dont want everyone to connect to my host
|
Just bind webserver to local, not a public IP. Or otherwise limit connections to your own network. You can decode auth request/response and limit based on that too - details in my first post.
Response decoding - strip "z", then decode hex twice.
|
|
|
03/26/2018, 22:38
|
#41
|
elite*gold: 0
Join Date: Oct 2012
Posts: 3
Received Thanks: 1
|
Quote:
Originally Posted by starbreeze111
Just bind webserver to local, not a public IP. Or otherwise limit connections to your own network. You can decode auth request/response and limit based on that too - details in my first post.
Response decoding - strip "z", then decode hex twice.
|
Hi thanks for your share, the publisher scammed me recently and I would like to use your mitm proxy but I can't get it to work, can you add me on discord so i can ask a few quick question what I do wrong
Scratch that, i fixed it. Thanks for your contribution starbreeze
|
|
|
03/31/2018, 12:49
|
#42
|
elite*gold: 0
Join Date: May 2015
Posts: 1
Received Thanks: 0
|
How can i import certificate? i have plain text but error in certificate and i dont know how to import a valid one. Thanks
|
|
|
04/01/2018, 20:24
|
#43
|
elite*gold: 0
Join Date: Apr 2007
Posts: 5
Received Thanks: 1
|
starbreeze server doesn't seem to work anymore  and i dont have another PC/way to run that stuff myself
|
|
|
04/01/2018, 21:25
|
#44
|
elite*gold: 0
Join Date: Jan 2009
Posts: 2
Received Thanks: 0
|
Quote:
Originally Posted by starbreeze111
Just bind webserver to local, not a public IP. Or otherwise limit connections to your own network. You can decode auth request/response and limit based on that too - details in my first post.
Response decoding - strip "z", then decode hex twice.
|
can u refresh the certificate? the certificate in your server is expired,, thx a lot for your contribution to make the bot free
|
|
|
04/01/2018, 22:42
|
#45
|
elite*gold: 0
Join Date: Oct 2012
Posts: 3
Received Thanks: 1
|
Not working anymore @
|
|
|
 |
|
Similar Threads
|
Lineage 2 Revolution - Quest Bot (Alpha)
09/28/2018 - Lin2 Exploits, Hacks, Bots, Tools & Macros - 18 Replies
A simple Lineage 2 (Rev) Quest bot for windows desktop emulator.
This is a very basic bot (created just as POC, and im tired tapping quests :D), but it handles the basic quests well. This tool lacks a lot of possible functionalities but I did not included them in one release. If I received a good feedback and demand for this tool I will enhance this, maintain, and add other features to it.
Download Link
https://sourceforge.net/projects/jtm-ln2-bot/file s/latest/download
Full details...
|
lineage 1 or the lineage the blood pledge
10/02/2016 - Lineage 2 - 6 Replies
anyone still got a lineage 1 bot for hunting? or know where i can find one plz =] btw i know this is lineage 2 =] so please don't tell me to :rtfm:
if you can help me you will be my hero :handsdown:
|
Lineage 2 DEX (www.lineage.ro)
01/30/2007 - Lineage 2 - 3 Replies
hi all these is my first post here in maxbastards, im here to asking if somone knows any EXPLOIT for these server, these server has +/- 4500 players, and its a l2 c4, im not sure but i think its l2off, thx guys.
Another question, whats that about the GG killer, i cant understand for what we should use it, i started to use hlapex for 1 weak but in many servers it dont work. THX
|
All times are GMT +1. The time now is 17:21.
|
|