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++/C Programming › AoB Scan

QuestionAoB Scan

Posts 1–6 of 6 · Page 1 of 1
SI
Sintax1
AoB Scan
hi all

im trying to make an aob scanner but its not working...

I got this code:

Code:
BYTE* ScanAOB(BYTE* AOB, BYTE* memdump, unsigned long searchsize, int aobsize) 
{ 
   unsigned long a = 0, i = 0; 
   for(i = 0; i < searchsize; i++) 
   {      
      if(memdump[i] == AOB[a]) 
      { 
         if(a == (aobsize - 1)) 
         { 
            return &memdump[i-a];             
         } 
         a++; 
      } 
      else a = 0; 
   } 
   return 0; 
}
and then doing like:

Code:
	byte SendAob[6] = {0x53, 0x56, 0x8B, 0xF1, 0x8D, 0x9E}; 
	DWORD SendAddy = (DWORD)ScanAOB(SendAob, (byte*)0x00000000, 0xFFFFFFFF, 6);
	this->textBox1->Text = SendAddy.ToString("X8");
It compiles without any error or warning but when i inject it and press button1. It gives a runtime error:



Can someone help me?

Credits to NoMercy for the code btw.
#1 · 15y ago
Hell_Demon
Hell_Demon
SendAob, (byte*)0x00000000

[img]http://www.**********/image/1236466/clipboard_upped.png[/img]
#2 · 15y ago
SI
Sintax1
Lol, i knew it was something stupid >.< It is working now.

bedankt
#3 · 15y ago
ғᴜᴋᴏᴊʀ
ғᴜᴋᴏᴊʀ
Sorry for the apparently dumb question but what's an AoB?
#4 · 15y ago
WH
whit
Quote Originally Posted by -TwEaK View Post
Sorry for the apparently dumb question but what's an AoB?
Array Of Bytes...
People call them Signature scans
#5 · 15y ago
ғᴜᴋᴏᴊʀ
ғᴜᴋᴏᴊʀ
Quote Originally Posted by whit View Post
Array Of Bytes...
People call them Signature scans
I know sig scans and I hear about AoB on maplestory hacking sites cuz yea ima dork. Never knew what it was
#6 · 15y ago
Posts 1–6 of 6 · Page 1 of 1

Post a Reply

Tags for this Thread

None