Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Openkore DC after try to move new chaos server idRO classic #519

Closed
dare631 opened this issue Mar 24, 2017 · 404 comments
Closed

Openkore DC after try to move new chaos server idRO classic #519

dare631 opened this issue Mar 24, 2017 · 404 comments

Comments

@dare631
Copy link

dare631 commented Mar 24, 2017

when bot try to attack or move they will kick from map server
aslong as u not move they wont kick you
anyone have a solution for this issue ?
i want to try using posseidon but i cant read the extract file of clientinfo.xml cz its encrypted

@dclxjdc
Copy link

dclxjdc commented Mar 24, 2017

what do you mean its encrypted ?
`

<servicetype>indonesia</servicetype>
<servertype>primary</servertype>
<hideaccountlist></hideaccountlist>
<passwordencrypt></passwordencrypt>
<extendedslot></extendedslot>
<connection>
	<display>Indonesia Server</display>
	<desc>None</desc>
	<address>202.93.25.81</address>
	<port>6900</port>
	<version>2</version>
	<langtype>6</langtype>
	<registrationweb>http://ragnarok.gravindo.id</registrationweb>
	<aid>
		<admin>100001</admin> <admin>102593</admin> <admin>102587</admin> <admin>102603</admin>
	</aid>
</connection>

`

@andros1987
Copy link

All about UDP port 17000.. Same problem with me .. I hope master can answer n solve this problem..T.T

@irsyad-id
Copy link

irsyad-id commented Mar 24, 2017

thats a heartbeat(HB), you should send packet every 9 seconds, and when you change map ( different IP : port ) they will send you a packed and you will send it back using their packet as a header, the problem is we have to know about packet structure HB to send it to map server..

otherwise we have to used poseidon and make it running.

@dare631
Copy link
Author

dare631 commented Mar 24, 2017

@dclxjdc so this server gameguard type u know it ? cz u must fill it in posseidon

@tronbone
Copy link

How about make the bot to chat every 9 s is that possible

@dare631
Copy link
Author

dare631 commented Mar 24, 2017

@irsyad-id i tried to run poseidon but it says no clienf info file can u send me email to guide using poseidon ? the bot is running well but when it start to move abit to pick or attack it will disconnect mufahu@gmail.com

@ohmangga
Copy link

@dclxjdc how did you get clear clientinfo.xml? is it from original data.grf? or you need to do something to decrypt the content?

@irsyad-id how about xkore 3?

@SiKemot
Copy link

SiKemot commented Mar 25, 2017

@tronbone i've tried.. it's still get kicked out from the server...

@tronbone
Copy link

any one come up with solution? looks like many bots already up on the server

@SiKemot
Copy link

SiKemot commented Mar 25, 2017

@tronbone not at the moment but i heard some of botters got the bot without sniff the packet which is one click go..

@182blnk
Copy link

182blnk commented Mar 25, 2017

please help,
nilai 69 00 4F 00 bla bla bla
knp saya sniffing ga nemu itu? apa nilai hex itu hasil decrypt?
kalau memang hasil decrypt gmn cara decrypt dr nilai originalnya?makasih
apa itu hasil decrypt dr nilai seperti pd gambar?
untitled

@juventus05
Copy link

Anyone know how to fix this disconnect thing? Every 30s it will get disconnected. I already tried several changes but it still the same.

@tronbone
Copy link

No one is helping 😢

@wimaian
Copy link

wimaian commented Mar 26, 2017

Oh somebody , help all

@gheghe
Copy link

gheghe commented Mar 27, 2017

sell more.. get help from seller 💃

@Vestralls
Copy link

Can someone with knowledge help us with the problem please ? I can reward you guys for helping me solve this problem. just send me message or email so we can talk about this. tyvm

@linz86
Copy link

linz86 commented Mar 30, 2017

Is there anyone who can help me to make the bot idro works..
Please teach me..I will pay you for your kindness..please email me vinsensiusandy.0101@gmail.com

@dare631
Copy link
Author

dare631 commented Apr 2, 2017

i think somehow this packet got changed before send to server so like before if we send wrong packet it got disconnected i try to change the rebuild packet in send.pm but i think my code not correct because i dont know what method they use to change it :(

@dare631
Copy link
Author

dare631 commented Apr 3, 2017

i've read the #221 i think its the same problem with this server but i confuse how i put this in send.pm

use Digest::HMAC_MD5 qw(hmac_md5);

then add:

$self->encryptMessageID($msg);

####### begin sample handling of hmac packets
if ($messageID eq $self->{packet_lut}{map_login}) {
    $self->{hmac_enc} = 1;
    $self->{seq} = 0;
    $self->{flag} = 1;
} elsif ($self->{net}->getState() != Network::IN_GAME) {
    $self->{hmac_enc} = 0;
    $self->{seq} = 0;
} elsif($self->{hmac_enc}) {
    $msg .= pack('V', $self->{flag}) . pack('V', $self->{seq}++);
    $msg .= hmac_md5($msg, pack('H*', 'EDB9D10AB84C9A2E05E38997C2F64A29'));
    $msg = pack('v', length($msg) + 2) . $msg;
}
####### end sample handling of hmac packets

$net->serverSend($msg);

the only change of the packet is only packet move because if i move an inch they will kick me from map server

i change the

sub sendToServer {
	my ($self, $msg) = @_;
	my $net = $self->{net};

	shouldnt(length($msg), 0);
	return unless ($net->serverAlive);

	my $messageID = uc(unpack("H2", substr($msg, 1, 1))) . uc(unpack("H2", substr($msg, 0, 1)));

	my $hookName = "packet_send/$messageID";
	if (Plugins::hasHook($hookName)) {
		my %args = (
			switch => $messageID,
			data => $msg
		);
		Plugins::callHook($hookName, \%args);
		return if ($args{return});
	}

or

i only change

sub reconstruct_character_move {
	my ($self, $args) = @_;
	$args->{coords} = getCoordString(@{$args}{qw(x y)}, $masterServer->{serverType} == 0);  
}

sub sendMove {
	my ($self, $x, $y) = @_;
	$self->sendToServer($self->reconstruct({switch => 'character_move', x => $x, y => $y}));
	debug "Sent move to: $x, $y\n", "sendPacket", 2;
}

maybe someone can guide me ? @unknown-item no longer here i think
@lututui @dclxjdc @irsyad-id @allanon

@fuskehacker
Copy link

please teach mee...

@Vestralls
Copy link

@dare631 looks like the game client messed up the current sniffer , have u checked ?

@ghost
Copy link

ghost commented Apr 6, 2017

Don't entrap in this topic. Do you think here it's market ?! Again bro ?!
@irsyad-id

thats a heartbeat(HB), you should send packet every 9 seconds, and when you change map ( different IP : port ) they will send you a packed and you will send it back using their packet as a header, the problem is we have to know about packet structure HB to send it to map server..
otherwise we have to used poseidon and make it running.

You need to check if the serverType is correct, if the sync packet is good !
Really ? And what is the size of the packet ?

0x20(hex)
or
32(dec)
If yes :
GameGuard detected.
Maybe using XKore 2 it can work ! Poseidon is no longer working since gameguard enabled HB packet !
I'm in the step that just need to get the shit virtual algorithm crypted by themida but it's hard (70% of the code, including Send Blowfish Encryption table) ¬¬ but i'm performing some dll injections in bRO if i got something i can talk to you !

@dare631
Copy link
Author

dare631 commented Apr 6, 2017

@Novishivsmoke its using hex some one has pass this step using xcore 1 but i must disable the gameguard notification to stop the ragexe from running
the only step that make us kick is only when we try to move attack or pickup items
another packet like attack, skills and others its normal
im still new cant do pro editing like others :(

@ghost
Copy link

ghost commented Apr 6, 2017

Post your exe here !

@dare631
Copy link
Author

dare631 commented Apr 6, 2017

Ragexe.zip
here it is @m3kgin3er

@dare631
Copy link
Author

dare631 commented Apr 6, 2017

the delphine protection is inside this
mfc90g.zip

@Vestralls
Copy link

Some bots went throught btw. Don't know how they did it. PLease masters , show us the way @m3kgin3er

@Vestralls
Copy link

@dare631 have u tried botting in aggresive mobs like munak or bongun or etc ?

@irsyad-id
Copy link

@m3kgin3er

when we connected to map ip, client send 20 hex packet,

[send]
00 00 00 00 00 00 00 00 00 00 00 00 00 91 27 00 00 < this packet is static, will send to map ip everytime we first connected to map ip.

after that, we will recieve 4 byte.
[recv]
C6 4C F2 14 < this packet is changing everytime we request i think this is timestamp...

then evertime we move we have to send some packet , if we dont, server will terminated our connection to server..

[send]
00 C3 C4 FA 14 DB 7D 38 74 17 D2 7A 63 B7 6D 13 B0 < its keep changing everytime we send.

yes this is a gameguard they used delphine, created by indonesian

@Overtunes
Copy link

@GustomZ whats your problem? encoded password?
i think you must check your secureLogin_requestCode

@BIGCOW71
Copy link

@rhanfelta itu biar WPE nya ga kedetect IDRO nya pake program tambahan apa gan?
@Overtunes what's to do with securelogin_requestcode?
@kitaro394 @Gaktaulah any clue buat tembusin MT yg terakhir?

@GustomZ
Copy link

GustomZ commented May 18, 2017

@Overtunes so what must i do with that securelogin_requestcode?
capture

@rhanfelta
Copy link

rhanfelta commented May 18, 2017

Edit udah jelas pembuktianya aahahhah

@minifish101
Copy link

1 juta buat dead game lul

@jojo1990
Copy link

ane ga bisa kode kodean, emang bukan bidang dan ga paham.jadi memutuskan untuk
B>Bot Idro yang work dan diupdate setiap ada perubahan.
bisa email ke yosuastpl@gmail.com

@GustomZ
Copy link

GustomZ commented May 19, 2017

@rhanfelta wow. 1 jt in rp. lebih baik langsung farm sndiri kwkwkwkw bntr lagi itu server mw tutup. brrti ane msti ngmpulin 100 jt baru balik itu modal.

@shineshikai
Copy link

yang bisa beli hanya para sultan sultan . yang bukan sultan mending belajar saja . dimana2 kebanyakan orang pintar selalu sok , tapi di pekerjaan dunia nyata malasnya mnta ampun , udah bukan rahasia umum . maaf bagi yang tersinggung . bukan bermaksud menyinggung , tapi emang seumur hidup gua didunia ini ketemu orang pintar selalu sok dengan kepintarannya apalagi bisa meciptakan sesuatu , tapi pas lg kerja bareng , guile mualesnya minta ampun . wkwkwkwwk . sekali lagi maaf bagi yang tersinggung , tidak bermaksud menyinggung anda !!!

@Overtunes
Copy link

@GustomZ use wpe i think, bypass client ragexe with your ok
let me check your ok.. i don't know what you and your friend's say /hehe

@rhanfelta
Copy link

rhanfelta commented May 19, 2017

Edit

@rhanfelta
Copy link

rhanfelta commented May 19, 2017

inti jelas biar gak pada sms lagi

Kalian seller atau opreker bot yang butuh WPE atau bypass buat baca" data ragnarok atau edit" packet praser dll saya jual bypass public tanpa HWID tanpa limit pembeli hingga jam 2 siang nanti seharga 300k hingga jam 2 siang, kenapa murah? karena ini bypass public ada + minusnya dan edisi penjualan terbatas hingga jam yang di tentukan.

bukan opreker atau seller bot? berarti kamu sultan saya jual BOT beres gak ribet:
-=SOLD OUT=-

@jojo1990
Copy link

yg mau beli bot bukan sultan males mikir males kerja doang om. saya kerja, oprek kerjaan sendiri aja ga abis abis. oprek bot lg? sabtu minggu doang bisanya, itu jg kalo ga kecapekan, dan ga bagi waktu sama keluarga. jual ya jual aja, beli ya beli aja. gausah judge

@rhanfelta
Copy link

rhanfelta commented May 19, 2017

@jojo1990

oh gituh yah maaf yah pertama kali saya yg di judge dluan soalnya gk taunya mereka munafik aahhaahha, saya juga kerja kok cmn fine" ajah asal bisa atur waktu yg bener

INFO:
Bypass Public: sold 2 orang pembeli (di jual hingga 14:00WIB)
Premium Bypass : Sold dengan saya korting harga
BOT Garansi Real: Sold Out saya di kasih bonus pula ahaha

sedikit pembuktian laku

contoh1

well post di atas saya edit karena soldout saya gk akan post lagi dulu hingga ada perubahan menarik dari ROnya Thanks yang udah beli

@shinryuuken
Copy link

@rhanfelta kembali cari korban.
udah capek makan indomie rupanya bung?

@kakEmma
Copy link

kakEmma commented May 19, 2017

Nipu mah nipu aja, mama minta pulsa di ktr polisi.

@dhiee00
Copy link

dhiee00 commented May 21, 2017

kelanjutan nya mana ni

@jojo1990
Copy link

jojo1990 commented May 21, 2017 via email

@thecupu
Copy link

thecupu commented May 23, 2017

@parminparmin @GustomZ
om sebelum MT bot om bisa jalan ?
boleh bagi om ? , soalnya gw bisa masuk pakai sniff tp dc dc ketika jalan

add discort thecupu#5436
atau email thecupu@gmail.com

thx

@rastafara88
Copy link

Hi all,

any clue for this trhead issues?

and also..
anyone knows robotic system.. this can be recognize object... so it will recorded and repeated doing..

@ImNotUser
Copy link

udah pada bisa kan bot nya?,ga ada yang ditanyain lagi? mending ini thread di tutup aja , kl didiskusiin lagi nnti makin byk yg ngebot, kasian harga zeny & item ro nya, makin turun tar harga. lagian ini thread udah gak nyambung, malah jadi ladang jual beli LOL , btw admin mana nih, close this issue plz

@thecupu
Copy link

thecupu commented Jun 1, 2017

Still not working yet and still DC DC

But if no one can help us in idRO
Just close this thread
No hope in idRO, You need to pay about 500-1000USD if you want to use openkore

@ToekangBacot
Copy link

ToekangBacot commented Jun 1, 2017

@thecupu
mahal bner 500-1000usd brrti 6jt-13jt Rp an dong, mending buat bisnis ganja deh kalo harga bot segitu wkwkkwkw

@makanayam
Copy link

justru harusnya disini dibongkar cara ngebotnya gimana...

biar harga zeny dan item bisa terjangkau...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests