Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › Programming › Visual Basic Programming › Memory editing (Read/Write Process Memory)

Memory editing (Read/Write Process Memory)

Posts 1–15 of 32 · Page 1 of 3
wolfguardiann
wolfguardiann
Memory editing (Read/Write Process Memory)
Well , firstly i know c++ yeah , c too , bla , but im trying to know the VB language aswell now.

The point is , How do i make a program , tht will show my hp and Mp using VB ?

i know how to make on C++ ( gratz to aanthonyz ^^) but , now i want to know how do i make that on VB, i know i will have to read the process memory , just like in c++

"ReadProcessMemory( bla bla bla)"

and , so , well , how do i read a process memory , getting hp and mp addresses are easy with CE or Tsearch , w/e.

All i want is some source code or w/e u guys can help me at.

like on c , ill need to open handle, window, read process , blla bla , and thats exactly what i want , so , how do i do it ?

One more question, i just started vb ( 2008 )like 1 week and , if u guys know some tutorials to get good at it, i would apprecciate , i alredy searched on google, but , didnt find good tutorials , just 1 , but , it stopped on radio buttoms xD.

I want to go Deeper than that , so , if anyone know how to make my hp and mp appear , and if anyone have some tutorials, to let me good with it , i would love !!

Tyvm for the ones that replis , and , ill be waiting , tyvm for support ad for the hand! happy hacking/programming !!

EDIT: Yeah , im looking on these tuts on the mpgh vb home page , but ,anyways , if u have mrore or w/e , plesae post it , and help me with my Q! TYVM!!
#1 · edited 15y ago · 15y ago
Fly3r
Fly3r
This May help U..
VB Tuts
#2 · 15y ago
NA
Nathan
I doubt you really know C++ but I'll post a method to read memory in a minute.
#3 · 15y ago
Jason
Jason
Wait until my release later today, you'll shit your pants at how easy it is.
#4 · 15y ago
master131
[MPGH]master131
Quote Originally Posted by Cho Chang View Post
Wait until my release later today, you'll shit your pants at how easy it is.
Hurry up and release your library already.
#5 · 15y ago
Jason
Jason
Quote Originally Posted by master131 View Post
Hurry up and release your library already.
I keep thinking up new things to add to it haha. It's pretty beastly now though.
#6 · 15y ago
wolfguardiann
wolfguardiann
Quote Originally Posted by Fly3r View Post
This May help U..
VB Tuts
"""""EDIT: Yeah , im looking on these tuts on the mpgh vb home page , but ,anyways , if u have mrore or w/e , plesae post it , and help me with my Q! TYVM!!"""""

well , i ws reading those acutally , but , ty anyways.

well , its better tutorial , cuz , libarary u wont put comments and i will acctually get the code , tutorial is self exlanatory , means it will have commentararies on what line or w/e usefull to know , like , i dont wanna just get thr code , and yeah understand it , that will be usefull for future things , im sure.

ty anyone whos still posting and hrlping me yet.

keep up the great work!!!

PS: i dont care if u post library or the tutorial , iwanna get thecode and have a little explanation on what line does.

Happy hacking!!
#7 · edited 15y ago · 15y ago
Jason
Jason
http://www.mpgh.net/forum/27-coders-...-v1-0-net.html
#8 · 15y ago
wolfguardiann
wolfguardiann
Quote Originally Posted by Cho Chang View Post
http://www.mpgh.net/forum/27-coders-...-v1-0-net.html
well the tut is used by c# , i use vb 2008 , i dotn have c# ...

and so its impossible to follow it , i need some tutorial in vb , or w/e

tyvm anyways! keep helping me please!
#9 · 15y ago
Jason
Jason
C# .dlls are compatible with VB projects you know...
#10 · 15y ago
HU
hustelboy
Quote Originally Posted by Cho Chang View Post
http://www.mpgh.net/forum/27-coders-...-v1-0-net.html


I have just shitting in my pants before u released this
#11 · 15y ago
wolfguardiann
wolfguardiann
so , i still need the code for getting PID , openining window , geting read acess, (ReadProcessMemory), and all that...(or/and more)
#12 · 15y ago
master131
[MPGH]master131
Process ID: [highlight=vb.net]Dim procID As Integer = Process.GetProcessByName("someprocess")(0).Id[/highlight]
OpenProcess: [highlight=vb.net]Dim procHandle As IntPtr = OpenProcess(PROCESS_VM_READ Or PROCESS_VM_WRITE Or PROCESS_VM_ACCESS, False, procID)[/highlight]
Get Read Access: [highlight=vb.net]'Allow read access from protected memory
Dim oldProtectAttributes As UInteger
VirtualProtectEx(procHandle, addressHere, sizeOfValue, PAGE_EXECUTE_READ, oldProtectAttributes)
'Restore original attributes
VirtualProtectEx(procHandle, addressHere, sizeOfValue, oldProtectAttributes, 0)
[/highlight]
Read Data from Address:
[highlight=vb.net]Using qh As New QuickHack(procID)
If qh.HasWriteAccess
Dim readValue As Integer = qh.ReadMemory(Of Integer)(&H101010)
End Using
End Using[/highlight]

OpenProcess and VirtualProtectEx are in Jason's HackLibrary in the APIFunctions class. The read data code requires Jason's HackLibrary aswell.
#13 · edited 15y ago · 15y ago
wolfguardiann
wolfguardiann
nice, ty , putiing it on vb, where should i put all those codes ? and second, an example of that , can u give? like putting in it on practise
#14 · 15y ago
NA
Nathan
Quote Originally Posted by wolfguardiann View Post
nice, ty , putiing it on vb, where should i put all those codes ? and second, an example of that , can u give? like putting in it on practise
He did. Didn't he?

This was the example:
[highlight=vb.net]Using qh As New QuickHack(procID)
If qh.HasWriteAccess
Dim readValue As Integer = qh.ReadMemory(Of Integer)(&H101010)
End Using
End Using[/highlight]

With tbis:

Code:
(&H101010)
He means:

Code:
(&HYOURADDRESS)
(at least that's what I think)
#15 · edited 15y ago · 15y ago
Posts 1–15 of 32 · Page 1 of 3

Post a Reply

Tags for this Thread

None