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 › C# Programming › C# Memory Read/Write

C# Memory Read/Write

Posts 1–5 of 5 · Page 1 of 1
Lxys
Lxys
C# Memory Read/Write
I am using Jorndel's C# Memory Reader/Writer

I have gotten the base address from a level 1 pointer. It has no offsets and the address is just 645360

I have written a C# application that will retrieve this number and print it to a textbox.

However, it does not return the number from the address, it returns '26269248' when it is supposed to return '199'

Image of what I'm explaining:


Code:
        private void button1_Click(object sender, EventArgs e)
        {
            if (Process_Handle("Tutorial-i386"))
            {
                textBox1.Text = ReadInteger(0x645360).ToString();
            }
        }
#1 · 10y ago
Dexter
Dexter
Quote Originally Posted by Versss View Post
I am using Jorndel's C# Memory Reader/Writer

I have gotten the base address from a level 1 pointer. It has no offsets and the address is just 645360

I have written a C# application that will retrieve this number and print it to a textbox.

However, it does not return the number from the address, it returns '26269248' when it is supposed to return '199'

Image of what I'm explaining:


Code:
        private void button1_Click(object sender, EventArgs e)
        {
            if (Process_Handle("Tutorial-i386"))
            {
                textBox1.Text = ReadInteger(0x645360).ToString();
            }
        }
View it in disassembler, then find what offset accesses that address, then use that offset in your code.
#2 · 10y ago
Lxys
Lxys
Quote Originally Posted by Dexter View Post
View it in disassembler, then find what offset accesses that address, then use that offset in your code.
It doesn't have any offsets, it's a level 1 pointer.
#3 · 10y ago
AuT03x3C
AuT03x3C
You are getting the value 26269248 in dec which would be 190D640 in hex.
To get 199 you need to do this:
Code:
ReadInteger(ReadInteger(0x645360));
#4 · 10y ago
Sammy
Sammy
Quote Originally Posted by Versss View Post
I am using Jorndel's C# Memory Reader/Writer

I have gotten the base address from a level 1 pointer. It has no offsets and the address is just 645360

I have written a C# application that will retrieve this number and print it to a textbox.

However, it does not return the number from the address, it returns '26269248' when it is supposed to return '199'

Image of what I'm explaining:


Code:
        private void button1_Click(object sender, EventArgs e)
        {
            if (Process_Handle("Tutorial-i386"))
            {
                textBox1.Text = ReadInteger(0x645360).ToString();
            }
        }
got windows 10? this might help

#5 · 10y ago
Posts 1–5 of 5 · Page 1 of 1

Post a Reply

Similar Threads

  • please! Having trouble with memory reading/writingBy bobsd in Reverse Engineering
    8Last post 12y ago
  • Pean's AHK MultiScript (open source, perfect norecoil, no memory reading/writing)By pean153 in Counter-Strike 2 Hacks
    116Last post 11y ago
  • Pean's AHK MultiScript (open source, no memory reading/writing, AHK 1.0.48.5)By pean153 in Counter-Strike 2 Hacks
    59Last post 11y ago
  • read write from memory !!By masis in Call of Duty Black Ops 2 Coding, Programming & Source Code
    0Last post 12y ago
  • Memory editing (Read/Write Process Memory)By wolfguardiann in Visual Basic Programming
    31Last post 15y ago

Tags for this Thread

None