Search found 15 matches

by jzjjony
Fri Jun 23, 2006 4:47 am
Forum: madSecurity
Topic: What's wrong with my code?
Replies: 1
Views: 14044

What's wrong with my code?

I try to change a registry key's DACL,but there is an error in //********* line,could you tell me why and what can i do? My code: var dwRet:dword; SamName:LPSTR; pSD:PSECURITY_DESCRIPTOR; pOldDacl,pNewDacl:PACL; ea:EXPLICIT_ACCESS_A ; Keys:HKEY ; reg:tregistry; str:tstringlist; begin keys:=0; getmem...
by jzjjony
Fri Jun 23, 2006 4:28 am
Forum: madCodeHook
Topic: the problem of "InjectService Demo"
Replies: 4
Views: 4402

I have recompiled the demo,and now,it can run and install,but i found it never inject "HookTerminateAPIs.dll" to any processes,why???
by jzjjony
Thu Jun 22, 2006 2:02 pm
Forum: madCodeHook
Topic: the problem of "InjectService Demo"
Replies: 4
Views: 4402

the problem of "InjectService Demo"

The demo "InjectService" use "InjectLibrarySession" to inject HookTerminateAPIs.dll,but i found it can't run .also I can terminate process from taskmgr,Why?
by jzjjony
Thu Jun 01, 2006 5:05 am
Forum: madKernel
Topic: How can I get all threads use 'NTQuerySytemInformation'
Replies: 7
Views: 16855

So,use The toolhelp functions can enumerate mostly process's threads,
but a little can not,such as Kaspersky's process,i think he hooked The toolhelp functions ,i purpose to make a new "task manager",it can terminate all processes
by jzjjony
Wed May 31, 2006 5:23 pm
Forum: madKernel
Topic: How can I get all threads use 'NTQuerySytemInformation'
Replies: 7
Views: 16855

I want to use terminatethread to terminate process,but some process's theads I can't get them
by jzjjony
Mon May 29, 2006 12:59 pm
Forum: madKernel
Topic: How can I get all threads use 'NTQuerySytemInformation'
Replies: 7
Views: 16855

How can I get all threads use 'NTQuerySytemInformation'

I want to get system all threads use NTQuerySytemInformation',
How can I do?
by jzjjony
Wed Mar 15, 2006 11:57 am
Forum: madKernel
Topic: How can I get Kaspersky's service process imagepath
Replies: 3
Views: 9108

When I used "CreateToolhelp32Snapshot" list processes,I found I coudn't
get the Kaspersky's service process true PID,How can I get it.
by jzjjony
Mon Mar 13, 2006 11:55 am
Forum: madKernel
Topic: How can I get Kaspersky's service process imagepath
Replies: 3
Views: 9108

How can I get Kaspersky's service process imagepath

I can get any process's imagepath,but Kaspersky's service process can't ,

How can I do?
by jzjjony
Tue Feb 28, 2006 10:17 am
Forum: madKernel
Topic: How can I get the Local service's exefile
Replies: 3
Views: 8738

My application run in administrator account.
The error is "project project1.exe raised exception class EExternalException with message 'External exception C0000008'.Process stopped.Use Step or Run to continue.";
by jzjjony
Sat Feb 25, 2006 4:03 pm
Forum: madKernel
Topic: How can I get the Local service's exefile
Replies: 3
Views: 8738

How can I get the Local service's exefile

When I using process(PID).ParentProcess.ExeFile to get the Local
service's exefile(such as alg.exe,svchost.exe),there is an error.

why?Whether I can get it?
by jzjjony
Wed Feb 01, 2006 2:19 am
Forum: madCodeHook
Topic: The Problem of hooking CreateRemoteThread
Replies: 6
Views: 5328

Thank you very much! :D
by jzjjony
Wed Jan 25, 2006 8:06 am
Forum: madCodeHook
Topic: How can I Enum Hooks of the installed system hooks ?
Replies: 1
Views: 2845

How can I Enum Hooks of the installed system hooks ?

Can we Enum Hooks of the installed system hooks ?
by jzjjony
Wed Jan 25, 2006 8:01 am
Forum: madCodeHook
Topic: The Problem of hooking CreateRemoteThread
Replies: 6
Views: 5328

Thanks, but I also have a problem,my code is: function CreateRemoteThreadCallback(hProcess: THandle; lpThreadAttributes: Pointer; dwStackSize: DWORD; lpStartAddress: TFNThreadStartRoutine; lpParameter: Pointer; dwCreationFlags: DWORD; var lpThreadId: DWORD): THandle; stdcall; begin result:=CreateRem...
by jzjjony
Tue Jan 24, 2006 3:26 am
Forum: madCodeHook
Topic: The Problem of hooking CreateRemoteThread
Replies: 6
Views: 5328

I want to inject this dll into applications, only.when the application trying to using "CreateRemoteThread",to Forbid it.
by jzjjony
Mon Jan 23, 2006 12:35 pm
Forum: madCodeHook
Topic: The Problem of hooking CreateRemoteThread
Replies: 6
Views: 5328

The Problem of hooking CreateRemoteThread

I'm trying to hook CreateRemoteThread.But, When i start hook this API, My Windows XP face a blue screen(OS Crash). Please, let me know what was wrong in my Code,and why? My code is: var CreateRemoteThreadNext:function(hProcess: THandle; lpThreadAttributes: Pointer; dwStackSize: DWORD; lpStartAddress...