Results 1 to 13 of 13
  1. #1
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108

    MemHack 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 mwhack As New MemoryHacking("iw4mp")

    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 mwhack as new memoryhacking("iw4mp") - 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 =P

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

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

    You simply use &H instead of 0x.

    Virus Scans:

    (I'm still on my desktop, so I can only submit one vscan >_<)

    MemHacks.rar - Jotti's malware scan

    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 Blubb1337; 08-24-2010 at 02:18 AM.



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

    Alexius_578 (04-27-2012),B4M (08-24-2010),Bambusstück (04-07-2015),bru65 (04-23-2012),cgallagher21 (08-24-2010),cmc5414 (05-22-2012),donatelis (08-05-2012),elhamratr (02-12-2012),GBot! (08-24-2010),GrenadeLaunchers (08-29-2010),Griffew123 (05-11-2016),House (08-24-2010),jabbathehutt (08-24-2010),jockeboii (04-17-2013),KevinCrouse (10-06-2015),soultaker69 (08-25-2010),Stoshy (08-24-2010),t-2 (06-02-2011),zicca (01-24-2015)

  3. #2
    House's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    2,990
    Reputation
    223
    Thanks
    9,296
    My Mood
    Cynical
    Happy Hacking!
    /Attachment Approved
    btw gj and thanks House for testing ^^

  4. The Following User Says Thank You to House For This Useful Post:

    GrenadeLaunchers (08-29-2010)

  5. #3
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    Haha, yea thank you xD

    Even though I had to logon TV to fix your crappy code =D



  6. #4
    House's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    2,990
    Reputation
    223
    Thanks
    9,296
    My Mood
    Cynical
    Quote Originally Posted by Blubb1337 View Post
    Haha, yea thank you xD

    Even though I had to logon TV to fix your crappy code =D
    (jk) really good thing, makes vb hackin easy as eating ice-cream

  7. #5
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    Eating ice-cream can be hard sometimes. Yk, some stupid people won't get this 2 work anyways :[


    Quote Originally Posted by Hell_Demon View Post
    Make it an exe, make it external, make ur own scripting language
    Well, duh. Idk how to do such hacks externally xD
    Last edited by Blubb1337; 08-24-2010 at 02:22 AM.



  8. #6
    B4M's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Real World
    Posts
    6,940
    Reputation
    478
    Thanks
    1,752
    My Mood
    Bored
    Looks good, I will definnely use it, as soon as I understand what it is supposed to do.
    [center]

    Back in '10



    Got a question?PM/VM me!
    I read them all.
    Also contact me via MSN.
    vlad@mpgh.net

    Minion since:07-04-2010
    Mod since:08-31-2010
    Till : 05.07.2011

  9. #7
    Hell_Demon's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    I love causing havoc
    Posts
    3,976
    Reputation
    343
    Thanks
    4,320
    My Mood
    Cheeky
    Make it an exe, make it external, make ur own scripting language
    Ah we-a blaze the fyah, make it bun dem!

  10. #8
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    You are supposed to easily write to memory or read a value of an address.



  11. #9
    jabbathehutt's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    616
    Reputation
    18
    Thanks
    731
    My Mood
    Aggressive
    Wow! Thats why youre on my respect list
    Helped out over 5000 guys with my level trainer and other stuff.

    Selling Steam accounts. Send me a message if you're interested.



    Nice forum needs to expands! Register now for a good position! (PM me)


  12. #10
    Archangel's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Between Both Worlds
    Posts
    8,866
    Reputation
    1021
    Thanks
    9,003
    My Mood
    Angelic
    Looks very good bro, i will be checking this out, thanks!

  13. #11
    GBot!'s Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Long Beach
    Posts
    3,361
    Reputation
    320
    Thanks
    421
    My Mood
    Amazed
    Im happy you made this but now my friend will brag how he made a hack... thanks BTW

  14. #12
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,668
    My Mood
    Breezy
    Looks great Blubb! *steals code and inserts inside VB2010*
    Too bad I don't like injecting codes!
    I might play around with this on my banned account though! >
    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]

  15. #13
    meeeeeeeeee's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    113
    Reputation
    13
    Thanks
    37
    Can I also add this as a module cuz for some stupid reason I can't add Reference (it doesn't show up in the bar, and also nothing appears in my coding)

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. [Patched] MemHacks DLL V1.0
    By Blubb1337 in forum Combat Arms Hacks & Cheats
    Replies: 47
    Last Post: 08-29-2010, 05:54 PM
  3. MemHacks DLL V1.0
    By Blubb1337 in forum WarRock Hack Source Code
    Replies: 7
    Last Post: 08-29-2010, 04:35 PM
  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