Page 4 of 4 FirstFirst ... 234
Results 46 to 48 of 48
  1. #1
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108

    MemHacks DLL V1.0

    MemHacks DLL V1.0

    So, I was bored today, as usual, and created a simple .Dll.

    This makes hacking a lot easier =D

    You can easily write/read memory.

    Features:

    • IsProcessOpen() as Boolean- See if a process is open
    • SetMemory(address, insert, bytelength) - Writes to a 4/8 whatever byte address
    • SetMemoryPointer(base, offset, value, bytelength) - writes to a memory byte pointer
    • ReadMemory(address) - Returns the value of the entered address
    • ReadMemoryPointer(base, offset, bytelength) - Returns the value of the entered pointer
    • SetFloat(address, insert) - Write to a float address
    • SetFloatPointer(base, offset, value) - Write to a float pointer
    • ReadFloat(address) - Returns float address' value
    • ReadFloatPointer(base, offset) - Returns float pointers address' value
    • Nop(address, insert) - Nop an address


    Usage

    R1ghtcl1ck on your project -> Add Reference -> Select the .Dll.



    [php]Imports MHacking.BlubbsDll

    Public Class Form1

    Private cahack As New MemoryHacking("engine")

    Private Sub cmdExp_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdExp.Click
    mwhack.SetMemory(&H1B2C89C, 2516000, 4)
    End Sub

    Private Sub cmdGetExp_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdGetExp.Click
    mwhack.ReadMemory(&H1B2C89C)
    End Sub

    Private Sub cmdFloat_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdFloat.Click
    mwhack.SetFloat(&H1337, 10000)
    End Sub[/php]

    [php]Private cahack as new memoryhacking("engine") - As you see, do not type in .exe.[/php]

    Using as new, allows you to edit more than just one process.

    [php]private sphack as new memoryhacking("iw4sp")[/php]

    Now you can access multi- and singleplayer, or multiple games. =P

    Addresses are built different in VB than in C++.

    C++ -> 0x01B2C89C
    VB -> &H01B2C89C

    You simply use &H instead of 0x.

    Virus Scans:

    MemHacks.rar - Jotti's malware scan

    MemHacks.rar MD5:3c58b5304f49a73a98fec4117d6e2f18 - VirSCAN.org Scanners did not find malware!

    This has been tested succesfully on Windows XP X32 AND Windows 7 X64.

    Have fun I guess =D

    Any further ideas? I'd love to add a .inject function but can't get a proper one working on all OSes.
    Last edited by Alessandro10; 01-26-2012 at 07:24 AM.



  2. The Following 6 Users Say Thank You to Blubb1337 For This Useful Post:

    D3rknesSnper (08-27-2010),dontcrymore15 (08-25-2010),mo3ad001 (08-24-2010),o-o (08-24-2010),SkaiHunta (08-27-2010),_Dead_MAn_ (08-24-2010)

  3. #46
    riotfire's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    0
    why cant i download?????

  4. #47
    Jailbroken671's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    13 28 N, 144 47 E
    Posts
    9,021
    Reputation
    704
    Thanks
    2,073
    My Mood
    Devilish
    isnt this a tut?

  5. #48
    Imported's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    142
    Reputation
    27
    Thanks
    47
    My Mood
    Relaxed
    Quote Originally Posted by iApple671 View Post
    isnt this a tut?
    No, there is no tutorial in it. It should be source though seeing as it only assists in hack creation.

Page 4 of 4 FirstFirst ... 234

Similar Threads

  1. [Release] MemHack DLL V1.0
    By Blubb1337 in forum Visual Basic Programming
    Replies: 28
    Last Post: 09-07-2010, 03:44 AM
  2. MemHacks DLL V1.0
    By Blubb1337 in forum WarRock Hack Source Code
    Replies: 7
    Last Post: 08-29-2010, 04:35 PM
  3. [Release] MemHack DLL V1.0
    By Blubb1337 in forum Call of Duty 6 - Modern Warfare 2 (MW2) Hacks
    Replies: 12
    Last Post: 08-29-2010, 06:59 AM
  4. MemHacks DLL V1.0
    By Blubb1337 in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 23
    Last Post: 08-24-2010, 07:50 AM
  5. [Release] MemHacks DLL V1.0
    By Blubb1337 in forum WarRock Discussions
    Replies: 1
    Last Post: 08-24-2010, 04:17 AM