Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Detect memory intrusion

Tags:

memory

delphi

There are software applications, such as ArtMoney, that edit the memory of other applications.

Is there a way to detect when some other application is editing the memory of my application?

like image 244
benasio Avatar asked Feb 07 '26 06:02

benasio


1 Answers

The basic idea to protect from basic memory modification is to encrypt the parts of memory you care about, and have redundant checks to ensure against modification.

None of which will stop a determined hacker, but it's sufficient to keep the script kiddies out of your address space.

like image 93
Anon. Avatar answered Feb 08 '26 18:02

Anon.