Hi.I'm trying to make a program that blocks speed programs like speedgear.
I'm currently blocking it with this code block
ProcessMemoryReader pReader = new ProcessMemoryReader();
pReader.ReadProcess = p;
pReader.OpenProcess();
byte[] NewVal = x;
int store = 0;
IntPtr BaseAddress;
BaseAddress = new IntPtr(0x0043B382);
x = pReader.ReadProcessMemory(BaseAddress, 6, out store);
if (x[0] == 80 && x[1] == 50 && x[2] == 66)
Close();
store = 0;
I take 0x0043B382 code from a program named process hacker.
Also it's scaning running process's titles but that code can be easily pass through if user change its title.
Not only speedgear but also there are more programs like this.
I can't find all of them so I'm out of ideas.
Any help?