Tagged Questions

0
votes
1answer
20 views

Windows API hooking inc kernel and NTDLL. Is there an authoritative reference or teaching text?

If a developer wishes to learn how to hook windows APIs and gain modifications control over the system as a whole, including say, hooking into kernel functions, NTDLL Windows Int …
0
votes
0answers
46 views

Winlogon: How to run app after explorer terminates during logoff?

Windows XP/VISTA/7 How might it be possible to run an application during the logoff procedure of a user, after explorer.exe terminates? The purpose is to block shutdown but with …
0
votes
0answers
22 views

NDIS Hooking for Blocking/Unblocking website on windows xp

Hello I am trying to block/unblock some of website on windows xp using NDIS Hooking.I am new for this NDIS Hooking on windows xp. so can you please tell whether is there any samp …
2
votes
2answers
96 views

How to hijack the Caps Lock key for Cut, Copy, Paste keyboard operations

Here is what I am trying to accomplish: To Copy, press and release Caps Lock ONCE To Paste, press and release Caps Lock TWICE, quickly To Cut, press Ctrl+Caps Lock The reason I …
3
votes
2answers
61 views

Spying on COM Objects

Hello everyone, I've set myself a new task which involves "spying" on COM objects. Even if you don't do COM, you're probably familiar with API hooking techniques where you can ho …
1
vote
2answers
126 views

Sending a string with sockets (not so easy!)

Hello. I am using Nektra's Deviare to hook winsock's send method calls. My ideia is to learn to also send messages through the same socket than the original application. So what I' …
1
vote
2answers
889 views

C++ - Detours WinSock Hooking

What I am trying to do is use the Detours library to hook into an applications WinSock2 send() and recv() functions (a packet logger). While it does work for the send() function, …
1
vote
3answers
78 views

How do I change a process’s socket connection

A process is connecting to a certain ip or domain, but I do not know what it is. The process can't connect to the server. How do I find and change it?
0
votes
1answer
160 views

Application hooking :: x64 system

Is there some kind of secret to hooking both 64bit & 32bit process on a 64bit system? In an application that I'm currently writing I need to be able to hook 64bit processes. H …
0
votes
1answer
99 views

Hooking within my application

What should I do to implement a hook-like system? This is my setup: I have these static libraries: A.lib B.lib A and B are like modules that can be included together within a …
1
vote
2answers
120 views

An impasse with hooking calls to HeapAlloc for a memory tracking application.

I am writing a memory tracking application that hooks all the calls to HeapAlloc using IAT patching mechanism. The idea is to capture all the calls to HeapAlloc and get a callstack …
0
votes
2answers
259 views

Hook application with .NET to capture double click events

How can I hook an application so that I can find out when the mouse is double clicked within it? Can this be done in .NET? Are there anythings I should be careful about? (crashin …
1
vote
2answers
501 views

Visual Studio Attach to Process

How is this tool used? Not the debugger, I mean Tools > Attach to Process. Does this mean I have the ability to dynamically link a DLL into another application or am I thinking fa …
1
vote
2answers
439 views

Keyboard Hook… not getting Lower or Upper case characters

The function below is logging the "0", "z" and the "1" ok... but its not capturing the "Z" (shift-z)... any help would be appreciated... __declspec(dllexport) LRESULT CALLBACK Hoo …
1
vote
5answers
594 views

How to manipulate DLGTEMPLATE programmatically?

What? I have a DLGTEMPLATE loaded from a resource DLL, how can I change the strings assigned to the controls at runtime programmatically? I want to be able to do this before the …