Page 3 of 4 FirstFirst 1234 LastLast
Results 31 to 45 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. #31
    Overlord41's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    1
    i dont get it

  4. #32
    Sunrise's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    ΞΔ
    Posts
    2,179
    Reputation
    99
    Thanks
    217
    My Mood
    Sleepy
    Works great! Good work! Keep it up!

  5. #33
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Quote Originally Posted by johnpotter View Post
    is this patched?
    Lol are you fucking kidding me?

    Okay listen up kiddies, this isn't a hack that you just inject into CA and voila you hack away. Blubb released this in sort of the wrong section, should be in source section but w/e.

    Basically it's a bunch of memory editing functs for VB.NET to help coders out, all compiled into this neat little .DLL. For all you leechers who only come here to download hacks and then fuck off again, I'm sorry to disappoint you.

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  6. The Following User Says Thank You to Jason For This Useful Post:

    Bullet Lugi (08-26-2010)

  7. #34
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    Quote Originally Posted by J-Deezy View Post


    Lol are you fucking kidding me?

    Okay listen up kiddies, this isn't a hack that you just inject into CA and voila you hack away. Blubb released this in sort of the wrong section, should be in source section but w/e.

    Basically it's a bunch of memory editing functs for VB.NET to help coders out, all compiled into this neat little .DLL. For all you leechers who only come here to download hacks and then fuck off again, I'm sorry to disappoint you.
    Epic explanation is epic.

    I bet some1 already tried to inject it into the game, seriously.



  8. #35
    Slice-'s Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Somewhere beyond the rainbow.
    Posts
    1,977
    Reputation
    11
    Thanks
    909
    ty for the source i updated myself

  9. #36
    soultaker69's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    Canada
    Posts
    63
    Reputation
    9
    Thanks
    1
    My Mood
    Relaxed
    cool ty il try it
    -10 posts []
    -25 posts []
    -50 posts []
    -100 posts []
    -250 posts []

    =Done
    =Not Done

  10. #37
    Goonthug's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0
    HELLO THANKS FOR THE HACKS

  11. #38
    D3rknesSnper's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    0.0
    Posts
    538
    Reputation
    11
    Thanks
    66
    My Mood
    Mellow
    Nice, ill have to be sure to look this over later.

  12. #39
    Zale10's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Posts
    22
    Reputation
    10
    Thanks
    2
    My Mood
    Busy
    excuse me in and noob how to use this dll? in dont understand thanx

  13. #40
    Hitmaniac's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    911
    Reputation
    11
    Thanks
    58
    My Mood
    Psychedelic
    Wrong section.... T_T, Epic Fail is Epic Fail

  14. #41
    truthfullove's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Beantown
    Posts
    9
    Reputation
    10
    Thanks
    0
    My Mood
    Cool
    well, it a great hack but its keep d/c

  15. #42
    Irony's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    MPGH where else?
    Posts
    5,969
    Reputation
    285
    Thanks
    539
    My Mood
    Busy
    This will def help me. ;D Thanks dude

  16. #43
    lateef15's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Greensboro, North Carolina, United States
    Posts
    409
    Reputation
    8
    Thanks
    16
    um plz i need help 1 of the code have an error




    YOU MAD BRO ??
    I BET!

    [img]https://www.danasof*****m/sig/YO490753.jpg[/img]

  17. #44
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    Post your code -.-?



  18. #45
    Raphtheking's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    23
    Reputation
    10
    Thanks
    24

    thank

    Thank you so much.

Page 3 of 4 FirstFirst 1234 LastLast

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