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 › MultiPlayer Game Hacks & Cheats › Combat Arms Hacks & Cheats › Combat Arms Hack Coding / Programming / Source Code › Address Logger for CA ?

Address Logger for CA ?

Posts 1–12 of 12 · Page 1 of 1
killerld
killerld
Address Logger for CA ?
Is it possible to do an address logger for CA ? It's like more easier to find addy ^^ and you have all of them you insert in the code. Undetected because it doesn't need to run the game, it's like a Hack. I were able to do it for WR but I'm not for CA :s

Can help me ?
#1 · 16y ago
Mr.Magicman
Mr.Magicman
You need bytes and a mask... bytes can i get but not mask
#2 · 16y ago
killerld
killerld
Yeah bytes are not really difficult to get. But it's not really the samething as WR so :s
#3 · 16y ago
tahha
tahha
well i have the source to a searcher and sig creator but it is not giving me the 2nd line of the sig so i cant use it till i fix it

but i use the sig maker to create the sig then use the sig to find the addie

it will log both the sig and addies to txt files once found

u inject the sigcreater and then hit numpad 0 then it will log the sigs
u inject the addie finder and hit numpad 0 and it logs the addies

if u think u can help me fix it, please do then we can have addies found faster and even use the sigs in our hacks instead of a dam addie
#4 · 16y ago
wizzerkin
wizzerkin
Quote Originally Posted by tahha View Post
well i have the source to a searcher and sig creator but it is not giving me the 2nd line of the sig so i cant use it till i fix it

but i use the sig maker to create the sig then use the sig to find the addie

it will log both the sig and addies to txt files once found

u inject the sigcreater and then hit numpad 0 then it will log the sigs
u inject the addie finder and hit numpad 0 and it logs the addies

if u think u can help me fix it, please do then we can have addies found faster and even use the sigs in our hacks instead of a dam addie
wat the hell are you talking about tht has nothing to do for this a sig creator????? this is for CA not here CA dosent have any sigs
#5 · 16y ago
WH
whit
Quote Originally Posted by wizzerkin View Post
wat the hell are you talking about tht has nothing to do for this a sig creator????? this is for CA not here CA dosent have any sigs
Lol you fail ...
A sig isa What where basically taken bout...
#6 · 16y ago
~GodLike~
~GodLike~
Yep you can do an addie logger.
I made one =)
Just google how to do them
#7 · 16y ago
ac1d_buRn
ac1d_buRn
Quote Originally Posted by ~GodLike~ View Post
Yep you can do an addie logger.
I made one =)
Just google how to do them
Yes, There pretty simple.
Alot of sources out there.

Im still confused on how to find the mask. Anyone wanna tell me how?
#8 · 16y ago
MM
mmbob
Quote Originally Posted by ac1d_buRn View Post


Yes, There pretty simple.
Alot of sources out there.

Im still confused on how to find the mask. Anyone wanna tell me how?
If the byte is an address or something that might easily change in the next patch, youll want to have the mask be a '?'.

For example:
Code:
 x  ?  ?  ?  ?
B9 56 28 10 37 mov eax, 0x37102856
 x  x
6A 05             push 0x05
So the mask would be "x????xx"
#9 · 16y ago
ac1d_buRn
ac1d_buRn
Quote Originally Posted by mmbob View Post
If the byte is an address or something that might easily change in the next patch, youll want to have the mask be a '?'.

For example:
Code:
 x  ?  ?  ?  ?
B9 56 28 10 37 mov eax, 0x37102856
 x  x
6A 05             push 0x05
So the mask would be "x????xx"
How would i know what bytes would be ? and wat bytes that would be x
#10 · 16y ago
Ende!
Ende!
Quote Originally Posted by ac1d_buRn View Post


How would i know what bytes would be ? and wat bytes that would be x
Just think about what is constant and what is changed with a patch. If there is a E9-Jmp, the fist byte is constant and the other 4 not, because it's an address to a memory location.
Code:
E9     00 11 22 33
jmp | memory adress (dword)
So the mask would be: x????

Everything, what is not constant (memoryaddys and so on), has to be flagged with a "?", the other bytes with "x"

I did an Addy-Dumper for WoW, it easiely reads out all interesting things from the PE-Header, serches the patterns in the binary file and than calculates the correct memory address from the raw one.

Greetings,
Ende
#11 · edited 16y ago · 16y ago
ac1d_buRn
ac1d_buRn
Quote Originally Posted by Ende! View Post
Just think about what is constant and what is changed with a patch. If there is a E9-Jmp, the fist byte is constant and the other 4 not, because it's an address to a memory location.
Code:
E9     00 11 22 33
jmp | memory adress (dword)
So the mask would be: x????

Everything, what is not constant (memoryaddys and so on), has to be flagged with a "?", the other bytes with "x"

I did an Addy-Dumper for WoW, it easiely reads out all interesting things from the PE-Header, serches the patterns in the binary file and than calculates the correct memory address from the raw one.

Greetings,
Ende
Hmm. Thanks for that. Im gna have a look into reversing and stuff.
#12 · 16y ago
Posts 1–12 of 12 · Page 1 of 1

Post a Reply

Similar Threads

  • Address logger for crossfire`?By GER-Domi. in CrossFire Help
    1Last post 16y ago
  • Address Logger For NewBie V1.0 Updated Pattern by Windowsxp925By pronten in WarRock Philippines Hacks
    19Last post 14y ago
  • Sorry for this but - Address Logger ?By D e a t h h a u n t S in WarRock - International Hacks
    7Last post 16y ago
  • Tradeing Good trainer makeing site and addresses site for punkbuster spoofBy lieutenent in WarRock - International Hacks
    0Last post 19y ago
  • I found address(es) for infinite ammo\no reload :)By Stranger00 in WarRock - International Hacks
    1Last post 19y ago

Tags for this Thread

None