Page 1 of 2 12 LastLast
Results 1 to 15 of 16
  1. #1
    Jàzzà_'s Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    185
    Reputation
    11
    Thanks
    97
    My Mood
    Cool

    NOPing in Visual Basic?

    Hey guys im trying to make a hack for a game using blubbs memoryhack dll thingy
    But was wondering how would i nop the address?
    Example:
    Code:
    CAHack.SetMemory(&H374B4594, &H90, 6)
    Address: &H374B4594
    NOP: &H90 (just guessing here)
    Length of bytes: 6

    Yes it's for CA I enable the checkbox fine as soon as i go to reload CA crashes :\
    The addie is no reload btw

    Cheers Jàzzà


    Applications:
    Jàzzà InjectXD | Radio♫ v1.1 | File Name Sorter
    Better than Bombsaway707 Radio (:

  2. #2
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    [php]CAHack.Nop(&H374B4594,6)[/php]

    Should work...



  3. #3
    Jàzzà_'s Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    185
    Reputation
    11
    Thanks
    97
    My Mood
    Cool
    Quote Originally Posted by Blubb1337 View Post
    [php]CAHack.Nop(&H374B4594,6)[/php]

    Should work...
    EDIT:
    I get Access is denied on my 33bit machine
    But on my 64bit machine i get no error just CA crashes :|

    I also did the "try" function and catched the error but it came up with a whole lot of code, that wasn't necessary
    Last edited by Jàzzà_; 11-29-2010 at 05:39 AM.


    Applications:
    Jàzzà InjectXD | Radio♫ v1.1 | File Name Sorter
    Better than Bombsaway707 Radio (:

  4. #4
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,662
    My Mood
    Breezy
    Run VB2010 as admin?
    Donate:
    BTC: 1GEny3y5tsYfw8E8A45upK6PKVAEcUDNv9


    Handy Tools/Hacks:
    Extreme Injector v3.7.3
    A powerful and advanced injector in a simple GUI.
    Can scramble DLLs on injection making them harder to detect and even make detected hacks work again!

    Minion Since: 13th January 2011
    Moderator Since: 6th May 2011
    Global Moderator Since: 29th April 2012
    Super User/Unknown Since: 23rd July 2013
    'Game Hacking' Team Since: 30th July 2013

    --My Art--
    [Roxas - Pixel Art, WIP]
    [Natsu - Drawn]
    [Natsu - Coloured]


    All drawings are coloured using Photoshop.

    --Gifts--
    [Kyle]

  5. #5
    Jàzzà_'s Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    185
    Reputation
    11
    Thanks
    97
    My Mood
    Cool
    Quote Originally Posted by master131 View Post
    Run VB2010 as admin?
    You don't have to, and apparently by what acid_buRn said, that CA deosnt allow access memeory via external programs :\


    Applications:
    Jàzzà InjectXD | Radio♫ v1.1 | File Name Sorter
    Better than Bombsaway707 Radio (:

  6. #6
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    If your running on Vista or 7 , your application DOES require escalation

    I can't speak much to CA, but I can tell you how your OS works

  7. #7
    Void's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Inline.
    Posts
    3,198
    Reputation
    205
    Thanks
    1,445
    My Mood
    Mellow
    The address you're trying to write to may be in a page with some access rights that you may have to change the write anything.

    Use VirtualProtectEx, set the access rights of that page to PAGE_EXECUTE_READWRITE.

  8. The Following User Says Thank You to Void For This Useful Post:

    NextGen1 (11-29-2010)

  9. #8
    freedompeace's Avatar
    Join Date
    Jul 2010
    Gender
    female
    Posts
    3,033
    Reputation
    340
    Thanks
    2,792
    My Mood
    Sad
    I haven't seen that namespace before |:

  10. #9
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    Quote Originally Posted by freedompeace View Post
    I haven't seen that namespace before |:
    It's part of Windows API...

    [php]
    Declare Function VirtualProtectEx Lib "kernel32.dll" (ByVal hProcess As IntPtr, ByVal lpAddress As IntPtr, ByVal dwSize As IntPtr, ByVal newProtect As Integer, ByRef oldProtect As Integer) As Boolean
    [/php]

    You can remove protections before allocating memory using PAGE_EXECUTE_READWRITE.

    I seriously Recommended everyone here takes some time to look into all the platform Invokes.


    Last edited by NextGen1; 11-29-2010 at 04:19 PM.

  11. #10
    Jàzzà_'s Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    185
    Reputation
    11
    Thanks
    97
    My Mood
    Cool
    Okays Ill see how I go, I delt this project will be of any success, but i'll try (:


    Applications:
    Jàzzà InjectXD | Radio♫ v1.1 | File Name Sorter
    Better than Bombsaway707 Radio (:

  12. #11
    freedompeace's Avatar
    Join Date
    Jul 2010
    Gender
    female
    Posts
    3,033
    Reputation
    340
    Thanks
    2,792
    My Mood
    Sad
    Quote Originally Posted by NextGen1 View Post


    It's part of Windows API...

    [php]
    Declare Function VirtualProtectEx Lib "kernel32.dll" (ByVal hProcess As IntPtr, ByVal lpAddress As IntPtr, ByVal dwSize As IntPtr, ByVal newProtect As Integer, ByRef oldProtect As Integer) As Boolean
    [/php]

    You can remove protections before allocating memory using PAGE_EXECUTE_READWRITE.

    I seriously Recommended everyone here takes some time to look into all the platform Invokes.


    I'm quite sure CAHack ain't part of the WinAPI.

  13. #12
    Hassan's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    System.Threading.Tasks
    Posts
    4,764
    Reputation
    495
    Thanks
    2,132
    My Mood
    Dead
    Quote Originally Posted by freedompeace View Post
    I'm quite sure CAHack ain't part of the WinAPI.
    What ?? /fp

  14. The Following User Says Thank You to Hassan For This Useful Post:

    NextGen1 (11-30-2010)

  15. #13
    o0OpurezO0o's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    behind you.
    Posts
    354
    Reputation
    10
    Thanks
    26
    My Mood
    Sick
    Quote Originally Posted by Jàzzà_ View Post
    EDIT:
    I get Access is denied on my 33bit machine
    33bit??? Do you mean 32bit?

  16. #14
    why06's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    IBM
    Posts
    4,304
    Reputation
    170
    Thanks
    2,203
    My Mood
    Flirty
    Quote Originally Posted by o0OpurezO0o View Post


    33bit??? Do you mean 32bit?
    ... That's ur problem.

    "Every gun that is made, every warship launched, every rocket fired signifies, in the final sense, a theft from those who hunger and are not fed, those who are cold and are not clothed. This world in arms is not spending money alone. It is spending the sweat of its laborers, the genius of its scientists, the hopes of its children. The cost of one modern heavy bomber is this: a modern brick school in more than 30 cities. It is two electric power plants, each serving a town of 60,000 population. It is two fine, fully equipped hospitals. It is some fifty miles of concrete pavement. We pay for a single fighter plane with a half million bushels of wheat. We pay for a single destroyer with new homes that could have housed more than 8,000 people. This is, I repeat, the best way of life to be found on the road the world has been taking. This is not a way of life at all, in any true sense. Under the cloud of threatening war, it is humanity hanging from a cross of iron."
    - Dwight D. Eisenhower

  17. The Following User Says Thank You to why06 For This Useful Post:

    NextGen1 (11-30-2010)

  18. #15
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    Quote Originally Posted by freedompeace View Post
    I'm quite sure CAHack ain't part of the WinAPI.
    I'm so confused.

    What are you talking about?

    Sometimes I wonder about you freedom.

  19. The Following User Says Thank You to NextGen1 For This Useful Post:

    Hassan (11-30-2010)

Page 1 of 2 12 LastLast