Page 1 of 2 12 LastLast
Results 1 to 15 of 22
  1. #1
    Dewerong's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    Inside a Packet
    Posts
    59
    Reputation
    10
    Thanks
    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?

  2. #2
    freedompeace's Avatar
    Join Date
    Jul 2010
    Gender
    female
    Posts
    3,033
    Reputation
    340
    Thanks
    2,792
    My Mood
    Sad
    Easy! Build a console application that does this. Then, look at it's ASM and see what it's done :P

    (on mobile)

  3. #3
    Crash's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    JAville
    Posts
    2,881
    Reputation
    163
    Thanks
    3,291
    My Mood
    Sleepy
    No offsets... obvious error is obvious.

  4. #4
    NOOBJr's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    in NOOB
    Posts
    1,423
    Reputation
    112
    Thanks
    693
    Crash help the kid. he's obviously tried hard. Were not all no life smart ass computer geeks like you!

  5. #5
    Dewerong's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    Inside a Packet
    Posts
    59
    Reputation
    10
    Thanks
    2
    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.
    Last edited by Dewerong; 10-05-2010 at 07:19 PM.

  6. #6
    Crash's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    JAville
    Posts
    2,881
    Reputation
    163
    Thanks
    3,291
    My Mood
    Sleepy
    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.

  7. #7
    freedompeace's Avatar
    Join Date
    Jul 2010
    Gender
    female
    Posts
    3,033
    Reputation
    340
    Thanks
    2,792
    My Mood
    Sad
    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:

  8. #8
    Dewerong's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    Inside a Packet
    Posts
    59
    Reputation
    10
    Thanks
    2
    Oh, than just ignore my post. :P. Also thank both of you for warning me.

  9. #9
    Crash's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    JAville
    Posts
    2,881
    Reputation
    163
    Thanks
    3,291
    My Mood
    Sleepy
    Quote Originally Posted by freedompeace View Post
    Bad bad advertising O:
    Naughty naughty FP advertising for the site in your quote.

    How clever.

  10. #10
    UltimateX1's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    114
    Reputation
    10
    Thanks
    10
    My Mood
    Yeehaw
    Quote Originally Posted by freedompeace View Post
    Bad bad advertising O:
    the funny thing is your helping

  11. #11
    Dewerong's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    Inside a Packet
    Posts
    59
    Reputation
    10
    Thanks
    2
    Does anyone know how to bypass Combat Arms anti-olly protection?
    Last edited by Dewerong; 10-05-2010 at 07:28 PM.

  12. #12
    freedompeace's Avatar
    Join Date
    Jul 2010
    Gender
    female
    Posts
    3,033
    Reputation
    340
    Thanks
    2,792
    My Mood
    Sad
    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.

  13. #13
    Dewerong's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    Inside a Packet
    Posts
    59
    Reputation
    10
    Thanks
    2
    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.
    Last edited by Dewerong; 10-05-2010 at 08:06 PM.

  14. #14
    freedompeace's Avatar
    Join Date
    Jul 2010
    Gender
    female
    Posts
    3,033
    Reputation
    340
    Thanks
    2,792
    My Mood
    Sad
    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 <.<

  15. #15
    Dewerong's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    Inside a Packet
    Posts
    59
    Reputation
    10
    Thanks
    2
    Are you home yet to help?

Page 1 of 2 12 LastLast

Similar Threads

  1. ASM Tutorial Link
    By SpiderByte in forum Assembly
    Replies: 4
    Last Post: 08-19-2008, 12:35 PM
  2. Asm hacks
    By LegendaryHacker1337 in forum WarRock - International Hacks
    Replies: 52
    Last Post: 01-10-2008, 06:06 PM
  3. [Release] WRS ASM Public Hack
    By Evilbot in forum WarRock - International Hacks
    Replies: 23
    Last Post: 11-13-2007, 04:37 AM
  4. Trade my UCE + OPK ASM code + My trainer for a retail code
    By Gamx100 in forum Trade Accounts/Keys/Items
    Replies: 4
    Last Post: 09-17-2007, 10:07 AM
  5. ASM in VB
    By Gamx100 in forum WarRock - International Hacks
    Replies: 7
    Last Post: 09-11-2007, 02:43 AM