Search found 46 matches

by arcanjo_junior
Sat Jan 12, 2008 2:17 am
Forum: madCodeHook
Topic: Hooking Freelibrary
Replies: 1
Views: 2876

Hooking Freelibrary

Hello, I need hook freelibrary ... and I use this code : ... var FreeLibraryNext : function (hLibModule: HMODULE): BOOL; stdcall; function FreeLibraryCall(hLibModule: HMODULE): BOOL; stdcall; var strPath:array [1..MAX_PATH]of char; begin ProcessIdToFileName(ProcessHandleToId(hLibModule), Pchar(@strP...
by arcanjo_junior
Mon Apr 02, 2007 7:25 pm
Forum: madCodeHook
Topic: Is Hooked?
Replies: 15
Views: 16498

I understand you… I forgive if I was insistent, more is that really this history of disassember is very confused. Thanks a lot for the aid.
by arcanjo_junior
Mon Apr 02, 2007 5:42 pm
Forum: madCodeHook
Topic: Is Hooked?
Replies: 15
Views: 16498

Thank you, uall. Very interesting this code, but in the part of bypass doesn't work fine.

P.S.: what address of your site, any email use my username at hotmail.
by arcanjo_junior
Sat Mar 31, 2007 3:26 am
Forum: madCodeHook
Topic: Is Hooked?
Replies: 15
Views: 16498

Thanks... Very interesting, you can show me some example ?? This method "hop" is new for me, mortal simple . I use a madCollection and uallCollection, this are the magic's programmers and I am only a simple person.
Thanks.
by arcanjo_junior
Fri Mar 30, 2007 3:17 pm
Forum: madCodeHook
Topic: Is Hooked?
Replies: 15
Views: 16498

Uall, thanks for you help.
I need do :
Find the hooks;
Unhook it.
I need unhook some functions, it are not protected. Because when I use Rootkit Unhooker, it works fine.
by arcanjo_junior
Tue Feb 20, 2007 10:47 pm
Forum: madCodeHook
Topic: Is Hooked?
Replies: 15
Views: 16498

Unhook ALL

Hello, First my congratulations uall, you function works perfect with madCodeHook. I am trying to create a program that I can make with that the function (hooked) comes back to the normal one (In the Rootkit Unhooker it shows and removes all hooks). Testing the function of uall I perceived that it d...
by arcanjo_junior
Mon Dec 04, 2006 5:13 pm
Forum: madCodeHook
Topic: How define sequence of programs on windows startup?
Replies: 8
Views: 6869

Looking in the Internet on the subject, me it seems that I will need to create a driver to guarantee that my program initiates before the others. I did not obtain to find nothing on the development of driver in delphi, I believe that it does not have as.
Somebody has some suggestion?

Thanks
by arcanjo_junior
Wed Nov 01, 2006 12:03 pm
Forum: madCodeHook
Topic: How define sequence of programs on windows startup?
Replies: 8
Views: 6869

I need define, in some place, the sequence of windows start the applications.
I'll try the service, but how logic windows use to initialize the service ? (by name, exe, category, ... ).

Thanks
by arcanjo_junior
Tue Oct 31, 2006 11:54 pm
Forum: madCodeHook
Topic: How define sequence of programs on windows startup?
Replies: 8
Views: 6869

How define sequence of programs on windows startup?

Hello,
I need know how I can define order of initialization for my program, because I need hook some dlls before another programs.

thanks
by arcanjo_junior
Fri Sep 22, 2006 5:47 pm
Forum: madCodeHook
Topic: "Remote" Uninject
Replies: 3
Views: 3689

Maybe I wrong, but in my conception I can use a variable integer, because Dword=LongWord and the basic diferent is the range. Of course maybe I will be a problem. Thanks. Forget about system process, the dll is injected in some processes and I need uninject it. I get the process handles using the ma...
by arcanjo_junior
Thu Sep 21, 2006 10:31 pm
Forum: madCodeHook
Topic: "Remote" Uninject
Replies: 3
Views: 3689

"Remote" Uninject

Hello, I need uninject a especific dll injected in system process. (not for my app) I try uninject process by process, using something like this : function TForm1.DesInjeta(intProcHandle : integer; strLib : String):boolean; begin result := UninjectLibrary (intProcHandle, strLib); end; In documentati...
by arcanjo_junior
Thu Apr 20, 2006 5:05 pm
Forum: madCodeHook
Topic: Problem Hooking LoadLibrary
Replies: 19
Views: 15066

What sugestion for replace function pos ???

Thansk
by arcanjo_junior
Thu Apr 20, 2006 2:52 pm
Forum: madCodeHook
Topic: Problem Hooking LoadLibrary
Replies: 19
Views: 15066

I need to stop loadlibrary, Somebody I can help me? I thought about using madcodehook because I have a small knowledge in the same one. More if somebody will have some another suggestion. Debtor.
by arcanjo_junior
Thu Apr 20, 2006 1:20 pm
Forum: madCodeHook
Topic: Problem Hooking LoadLibrary
Replies: 19
Views: 15066

:sorry: Same problem, I use this code : function LoadLibraryExWCallback(lib: pwidechar; file_, flags: dword) : dword; stdcall; var myresult : dword; begin if (pos('xxx.dll',lib) = 0) then result := LoadLibraryExWNext(lib, file_, flags) else begin result := ERROR_ACCESS_DENIED; {or result := ERROR_FI...
by arcanjo_junior
Thu Apr 20, 2006 2:28 am
Forum: madCodeHook
Topic: Problem Hooking LoadLibrary
Replies: 19
Views: 15066

Problem Hooking LoadLibrary

I using the madshi example for hooking the loadlibrary. But I need stop them, like this : function LoadLibraryExWCallback(lib: pwidechar; file_, flags: dword) : dword; stdcall; begin result := LoadLibraryExWNext(lib, file_, flags); if Pos('xxx.dll',lib)>0 then FreeLibrary(result); Log('LoadLibraryEx...