Tag Archive: Process


playing PEB (Process Environment Block) again :D . Now try Extract PEB information from 64bit process, use Wow64 api.

about WoW64 :
[url]http://en.wikipedia.org/wiki/WoW64[/url]
[url]http://msdn.microsoft.com/en-us/library/aa384274(v=vs.85).aspx[/url]

Instead of using the x86 system-service call sequence, 32-bit binaries that make system calls are rebuilt to use a custom calling sequence. This calling sequence is inexpensive for WOW64 to intercept because it remains entirely in user mode. When the custom calling sequence is detected, the WOW64 CPU transitions back to native 64-bit mode and calls into Wow64.dll. Thunking is done in user mode to reduce the impact on the 64-bit kernel and to reduce the risk of a bug in the thunk that might cause a kernel-mode crash, data corruption, or a security hole. The thunks extract arguments from the 32-bit stack, extend them to 64 bits, then make the native system call.

View full article »

just some code requested for detect process by handle table enumeration..

View full article »

Tadi keasikan browse blognya IvanleF0u’s, eh saya liat ada tutorial yang menarik yaitu tentang system handle information dan bagaimana sih program file unlocker bekerja … ? link tutornya here (bahasa france so use translate google :P ). Garis besar dari tutorialnya sih untuk meng’Unlock file maka perlu membebaskan penggunaan dari file itu seperti kill processnya, jika berupa dll unload it, and close handlenya di system handle information.

adapun codenya saya share satu unit aja yah, malas extract :D , btw here u go the code..
View full article »

Beberapa fungsi PEB module manipulation, semoga berguna..

View full article »

pada thread sebelumnya
[url]http://cybercoding.wordpress.com/2011/04/15/example-enum-module-at-peb/[/url]
sy post bagaimana cara enum module dari peb ldr lingketlist…

nah kelemahan dari cara enumerate peb method adalah sang malware bisa saja menghilangkan (unlink) modulenya sehingga saat di enum (peb-ldr) tidak akan ada…

so how to detect typical malware / rootkit like that then ? kita bisa mengenum memory region (check memory tipe = image)

lebih jelas take a look this code

View full article »

Follow

Get every new post delivered to your Inbox.