Search found 5 matches

by ThievingSix
Wed Sep 22, 2010 7:20 am
Forum: madShell
Topic: ShellObj(sfDesktopObj) / Desktop problem ...
Replies: 9
Views: 23468

This is a little late, but: I ran into the same issue and used the fix listed here which worked great for solving the problem on 64bit machines, but I lost functionality on 32bit machines. The problem is you're calling IsWow64Process with the process handle of the desktop. This function will return ...
by ThievingSix
Sun Aug 31, 2008 5:18 am
Forum: madCodeHook
Topic: HookCode(), hook where your not supposed to?
Replies: 3
Views: 3674

If your talking about the Game, then no.

This is for a custom encryption scheme for it.
by ThievingSix
Fri Aug 29, 2008 6:33 pm
Forum: madCodeHook
Topic: HookCode(), hook where your not supposed to?
Replies: 3
Views: 3674

HookCode(), hook where your not supposed to?

Let's say I have a function in an executable that looks like this: 00538680 /$ 8B4C24 04 MOV ECX,DWORD PTR SS:[ESP+4] 00538684 |. 85C9 TEST ECX,ECX 00538686 |. 74 1E JE SHORT Gunz.005386A6 00538688 |. 56 PUSH ESI 00538689 |. 8B7424 0C MOV ESI,DWORD PTR SS:[ESP+C] 0053868D |. 85F6 TEST ESI,ESI 005386...
by ThievingSix
Sat Jan 05, 2008 9:06 am
Forum: fun talk
Topic: Execute from stream
Replies: 1
Views: 11904

Ok, I did end up fixing it myself.

Through dumb luck I was debugging and found out that some of the edits done to the EXE that I was trying to load, was done outside the file image addressed by the PE header. I used PE Editor to change the Image size that is to be included and it works. =P
by ThievingSix
Sun Dec 30, 2007 4:03 am
Forum: fun talk
Topic: Execute from stream
Replies: 1
Views: 11904

Execute from stream

Ok madshi, this doesn't really relate to your software but maybe you can help anyway. @ciuly, if your the same person on EE then congrats I found this piece of code from your link. Ok, I'm trying to load a executable from a .res file, load it to a memory stream and execute it. type TSections = array...