Search found 109 matches

by jonny_valentine
Mon Jan 25, 2010 7:19 pm
Forum: madCodeHook
Topic: IPC Messages and 64/32 bit processes
Replies: 3
Views: 3377

Madshi... do you recommend mchIPC? We are thinking about using your IPC method, currently we are using Named Pipes and they are not the most reliable... :s
by jonny_valentine
Sun Jan 17, 2010 7:57 pm
Forum: madCodeHook
Topic: mch 3.0 windows 2000
Replies: 4
Views: 3417

Feel free to ask and I can let you remote control the machine for testing if that helps.
by jonny_valentine
Thu Jan 14, 2010 6:34 pm
Forum: madCodeHook
Topic: mch 3.0 windows 2000
Replies: 4
Views: 3417

mch 3.0 windows 2000

Hey! great work with mch3.. works very well and I highly recommend it! :wink: After much testing, i got to windows 2000 and it fails to install the driver and getlasterror returns error 2, "file not found". I try copying the files to system32 but same error.. so i use SC.exe to try and ins...
by jonny_valentine
Wed Jan 06, 2010 4:17 pm
Forum: madCodeHook
Topic: 64-bit support on Vista and Windows 7 - when?
Replies: 50
Views: 75446

One thing is still not clear for me. I am using Win 7 64 bit. I want to hook just 32 bit processes, via a 32 bit dll and exe. I also want to hook already running 32 bit and new 32 bit processes. Do I need still a signed driver? Because my code signing certificate will not work with drivers, as far ...
by jonny_valentine
Tue Aug 25, 2009 12:50 pm
Forum: fun talk
Topic: New Security Tool Released
Replies: 22
Views: 61849

Iconic... amazing tool, very impressed :)
by jonny_valentine
Wed Jul 08, 2009 4:00 pm
Forum: madCodeHook
Topic: Notify the injected dll about some changes? IPC?
Replies: 11
Views: 10124

You can use a .shared section in the dll, but not the best method. (edited coz i agree with madshi below - ive always done it that way)
by jonny_valentine
Wed Jul 08, 2009 3:57 pm
Forum: madCodeHook
Topic: MCH beginers question
Replies: 5
Views: 3862

You must include/link to madchook.lib in the project settings.

Then at the top of your project do:

#include "madChook.h"

Put the madchook.lib and .h files into your project folder.
by jonny_valentine
Wed Jul 08, 2009 3:53 pm
Forum: madCodeHook
Topic: Recovering DocumentProperties a document sent to printer??
Replies: 1
Views: 2546

Its more likely the other hooks you've done, especially the CreateDC hook... stop all hooks except the DocumentPropertiesW..

Also, remove the if statement, just return the next hook...

(if (strcmp(teste,"%systemroot%\system32\spoolsv.exe")) =garbage)
by jonny_valentine
Wed Apr 01, 2009 10:16 pm
Forum: madCodeHook
Topic: help: in prevent task manager ending my process
Replies: 3
Views: 3895

There is an example that comes with MCH, in the demo's folder.
by jonny_valentine
Wed Nov 05, 2008 10:33 pm
Forum: madCodeHook
Topic: Visual Studio 2008 - Hook not triggured (updated)
Replies: 4
Views: 4478

Thank you, you are correct... i used a vs2008 project template for win32 dll.. and it didnt include the breaks (strange).

All works as normal now i included the breaks on each case..

Thank you again, such a simple and obvious error

Cheers!

Jon
by jonny_valentine
Wed Nov 05, 2008 1:51 pm
Forum: madCodeHook
Topic: Visual Studio 2008 - Hook not triggured (updated)
Replies: 4
Views: 4478

Thanks for the reply...

Adding the break makes no difference.
by jonny_valentine
Mon Nov 03, 2008 4:19 pm
Forum: madCodeHook
Topic: Visual Studio 2008 - Hook not triggured (updated)
Replies: 4
Views: 4478

Visual Studio 2008 - Hook not triggured (updated)

Hi all.. using VS2008(VC++), basic code below, DLL is injected (can also see dll via processxp), HookAPI returns True, Callback is never triggured. System is Windows XP. Works with VC++ 6. It's probably a really basic mistake but i must be blind... any ideas? // dllmain.cpp : Defines the entry point...
by jonny_valentine
Wed Apr 16, 2008 6:39 pm
Forum: madCodeHook
Topic: IPC + Visual Basic Example
Replies: 20
Views: 27531

The reason for the vb crash when using IPC is because VB6 does not support threads!!! Need i say more? ..use vb.net or make your own pipe receiving function and poll it.
by jonny_valentine
Mon Mar 31, 2008 3:42 pm
Forum: madCodeHook
Topic: Function to recoup the number of pages printed (hook)
Replies: 21
Views: 27415

Does the code in this thread retrieve the real dmcopies count for documents printed in ms word... no matter what i try i keep running into the ms word bug where the real dmcopies is only in the .spl file.
by jonny_valentine
Mon Mar 03, 2008 9:02 am
Forum: madCodeHook
Topic: Vista: IE7 protected mode?
Replies: 18
Views: 13812

madshi wrote:Would be great if you could make it work with VB.
I dont think its hard, i think they were using your public dll but should have exported their own function with changed parameters to get it to work with copymemory... will keep you posted.

Edit: oh.. and they didnt use thread safe functions :)