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 › [HELP]FindPattern

[HELP]FindPattern

Posts 1–10 of 10 · Page 1 of 1
♪~ ᕕ(ᐛ)ᕗ
♪~ ᕕ(ᐛ)ᕗ
[HELP]Find siggy mask
EDIT: Can some1 tell me how to find the mask of a siggy
#1 · edited 15y ago · 15y ago
'Bruno
'Bruno
I find this one to be a good example:

"Think of this like a detour in the road: if you're driving to your mall, and there's a construction site going on, you'll usually be taken down a detour. However, you'll still arrive at the mall, just through a different means" By someone at another forum.
#2 · 15y ago
♪~ ᕕ(ᐛ)ᕗ
♪~ ᕕ(ᐛ)ᕗ
Quote Originally Posted by Brinuz View Post
I find this one to be a good example:

"Think of this like a detour in the road: if you're driving to your mall, and there's a construction site going on, you'll usually be taken down a detour. However, you'll still arrive at the mall, just through a different means" By someone at another forum.
umm, idk I didn't understood anything, are we talking about the same detours? I mean this:
Detours - Microsoft Research

EDIT: Oh never mind. I found out what it is.
#3 · edited 15y ago · 15y ago
'Bruno
'Bruno
Quote Originally Posted by Play&Win View Post


umm, idk I didn't understood anything, are we talking about the same detours? I mean this:
Detours - Microsoft Research

EDIT: Oh never mind. I found out what it is.
You were talking about the library, but you also asked what is a detour(i guess you asked, an hook).
And i answered with a simple definition to explain what the name exactly is.

And this is on the link that you posted:
Detours is a library for instrumenting arbitrary Win32 functions on x86, x64, and IA64 machines. Detours intercepts Win32 functions by re-writing the in-memory code for target functions. The Detours package also contains utilities to attach arbitrary DLLs and data segments (called payloads) to any Win32 binary.
It's talking about the api, but still, it explains what is does.(hook?)
Or maybe i'm just misunderstanding what you asked. (probably that, as i wasn't talking about the api) Just meh.. I'm probabily not explaining myself correctly, and confusing you and me.
#4 · edited 15y ago · 15y ago
♪~ ᕕ(ᐛ)ᕗ
♪~ ᕕ(ᐛ)ᕗ
Quote Originally Posted by Brinuz View Post
You were talking about the library, but you also asked what is a detour(i guess you asked, an hook).
And i answered with a simple definition to explain what the name exactly is.

And this is on the link that you posted:


It's talking about the api, but still, it explains what is does.(hook?)
Or maybe i'm just misunderstanding what you asked. (probably that, as i wasn't talking about the api) Just meh.. I'm probabily not explaining myself correctly, and confusing you and me.
I did understood. But now I need the FindPattern Function....

HUH?
NVM....
Can some1 tell me how to find the mask of a siggy?
#5 · edited 15y ago · 15y ago
freedompeace
freedompeace
Quote Originally Posted by Play&Win View Post


I did understood. But now I need the FindPattern Function....

HUH?
NVM....
Can some1 tell me how to find the mask of a siggy?
Take your address. Look at what bytes there are, look at the surrounding code, and select bytes that will not change.
#6 · 15y ago
♪~ ᕕ(ᐛ)ᕗ
♪~ ᕕ(ᐛ)ᕗ
Quote Originally Posted by freedompeace View Post


Take your address. Look at what bytes there are, look at the surrounding code, and select bytes that will not change.
well, ok..for ie:
Code:
JMP 006658874
JMP will not change...so I have to put it:
Code:
EB ??
And from there I should do:
Code:
xx??
So this is the mask?
#7 · edited 15y ago · 15y ago
master131
[MPGH]master131
Uhm you're supposed to be using Array Of Bytes as a signature. Not ASM code from CE.

0xFF = Byte required
0x00 = Byte optional

That's now people normally use masks anyway.

But one question, what exactly are you trying to do? Are you trying to find an address via a pattern finder?
#8 · edited 15y ago · 15y ago
Hell_Demon
Hell_Demon
jmp 12345678 looks like \xEB\x78\x56\x34\x12
since only 0xEB is static:

sig: "\xEB\x00\x00\x00\x00"
mask: "x????"
#9 · 15y ago
♪~ ᕕ(ᐛ)ᕗ
♪~ ᕕ(ᐛ)ᕗ
Quote Originally Posted by Hell_Demon View Post
jmp 12345678 looks like \xEB\x78\x56\x34\x12
since only 0xEB is static:

sig: "\xEB\x00\x00\x00\x00"
mask: "x????"
yea thanks....
so in masks:
x = Fixed Byte
? = Variable Byte
^^
Well thanks HD and master.
#10 · 15y ago
Posts 1–10 of 10 · Page 1 of 1

Post a Reply

Tags for this Thread

None