[ASM] PushToConsole

Posts 115 of 22 · Page 1 of 2
[ASM] PushToConsole
So while I was trying to convert yall C++ PushToConsole to asm. It doesn't work.

PushToConsole proc CommandWORD
.data
LTClient dd 377ED910h

.code

push Command
call LTClient
add esp, 4h
ret

PushToConsole endp
Any help? Wrong offset?
Easy! Build a console application that does this. Then, look at it's ASM and see what it's done :P

(on mobile)
No offsets... obvious error is obvious.
If you think I am a total noob at hacking and programming, think again. I'm hacking StarCraft II and I got customers paying. This is my first FPS game I'm hacking. I have hacked 3 of Blizzard Games. My site:


I do it all. I program in assembly, obvious. I like doing code caves. I notice C.A has some anti-debug built in. That is ruining my fun. Anyways, it seems you are the big hacker in C.A. Well nice to meet you, Crash.
Quote Originally Posted by Dewerong View Post
I do it all. I program in assembly, obvious. I like doing code caves. I notice C.A has some anti-debug built in. That is ruining my fun. Anyways, it seems you are the big hacker in C.A. Well nice to meet you, Crash.
Not really actually. I was just gunna say that the address you have is a pointer to a class and the offset for the console command function is 0x208

I'm not too good at asm I'm still learning it /

Also : Remove the url or else you'll get banned for ads.
Quote Originally Posted by Dewerong View Post
If you think I am a total noob at hacking and programming, think again. I'm hacking StarCraft II and I got customers paying. This is my first FPS game I'm hacking. I have hacked 3 of Blizzard Games. My site:

NaturalHax - Index page
Bad bad advertising O:
Oh, than just ignore my post. :P. Also thank both of you for warning me.
Quote Originally Posted by freedompeace View Post
Bad bad advertising O:
Naughty naughty FP advertising for the site in your quote.

How clever.
Quote Originally Posted by freedompeace View Post
Bad bad advertising O:
the funny thing is your helping
Does anyone know how to bypass Combat Arms anti-olly protection?
Quote Originally Posted by Dewerong View Post
Does anyone know how to bypass Combat Arms anti-olly protection?
It's the Themida Olly Debug Output crash/exploit, not Combat Arms'. There's a plugin somewhere that bypasses this... I'm not sure where though.
Crash help the kid. he's obviously tried hard. Were not all no life smart ass computer geeks like you!
So with the PushConsole() I've come down with this:
PushToConsole proc CommandWORD
LTClient = dword ptr -14h
CNoff = dword ptr -8

mov [ebp+LTClient], 377ED910h
mov eax, [ebp+LTClient]
mov ecx, [eax]
mov edx, [ecx+208h]
mov [ebp+CNoff], edx
push [ebp+Command]
call [ebp+CNoff]
add esp, 4h
ret

PushToConsole endp
Still isn't doing anything.
@Edit:
I realize that was the wrong pointer offset. I'll update it and see.

@Edit2:
I updated the pointer to 377ED910 and still doesn't work.
Quote Originally Posted by Dewerong View Post
So with the PushConsole() I've come down with this:


Still isn't doing anything.
@Edit:
I realize that was the wrong pointer offset. I'll update it and see.

@Edit2:
I updated the pointer to 377ED910 and still doesn't work.
I'll try and help when I get home. Mobile mode code tags are stuck to 3 characters, the rest are hidden <.<
Are you home yet to help?
Posts 115 of 22 · Page 1 of 2

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?