0
votes
1answer
27 views

WINAPI Hook - determine whether a new directory was created [closed]

Is there any way to create a callback that reacts after the user created a new folder in the explorer?
0
votes
0answers
61 views

How can I hook backspace key correctly?

I came this convention, I want to process the backspace in special way. so I use: SetWindowsHookEx(WH_KEYBOARD,(HOOKPROC)LauncherHook, NULL, GetMainThreadId(id)); in my process. but the problem ...
-3
votes
0answers
34 views

Hooked WriteProcessMemory and ReadProcessMemory shows address in strange format

I hooked process which uses WriteProcessMomory function and ReadProcessMomory function from kernel32.dll, however it shows strange lpBaseAddress and lpBuffer in some strange format: LPCVOID ...
14
votes
1answer
166 views

Is set single step trap available on win 7?

I was doing with a so called 'seh hooking'. Actually it changes permission of region of memory and catches the exception when it gets accessed, so it can hook the function. It uses the single step ...
0
votes
0answers
45 views

Is HHOOK process-specific in Windows?

We are using SetWindowsHookEx to hook to another process B from our process A. This function returns HHOOK which can be used by UnhookWindowsHookEx to remove the hook. If our process A which installed ...
0
votes
0answers
51 views

Hooking NtQueryDirectoryFile can't hide files

I want to hide files (in my program). I decided to use NtQueryDirectoryFile. But the files are not hidden, the code does not work. I don't use a driver, I use user mode. Can anybody help me please? ...
0
votes
1answer
55 views

Is there a possibility to prevent files from deleting in specified directory?

I have following situation: I am monitoring a folder with the FileSystemWatcher class from .NET (C#). With this class i get to know if a file was deleted but i want the following behaviour: Prevent ...
1
vote
1answer
27 views

WindowsFromDc return null

I need some help about the win32 api and especially WindowsFromDc. I have a application which hook a another application. This two application communicate by a NamedPipe. In the second application, ...
0
votes
0answers
128 views

Global CBT Hook in Windows 7 fails eventually

I am using a global CBT hook setup to stop new windows from stealing focus. I am injecting the c++ DLL from a c# app. It functions fine for a while and then stops working. I thought it might be timing ...
7
votes
1answer
329 views

Intercept mouse click from other program

I’m trying to intercept mouse clicks from another program. I’m making a plugin for the program, that overlays a transparent form on the program and displays additional information. When I click on the ...
1
vote
0answers
144 views

How do I hook ws2_32.connect on Windows XP?

I've been hooking ws2_32's connect function in external processes. I simply create the process with CREATE_SUSPENDED and then inject the "hook.dll" into the process to hook the connect function. ...
1
vote
1answer
198 views

Global Keyhook on 64-Bit Windows

I currently have some trouble to get a global keyhook working on a Windows 7 64-Bit O/S. Now I know that there are a lot of threads on this topic already here on Stackoverflow, but none of them quite ...
2
votes
1answer
107 views

Windows API global hook's unlimited range

I'm trying to make a C++ application that handles keyboard events (actually, just want to "catch" some phrases the user types) on every application running on the PC. The very base of what I am trying ...
-1
votes
1answer
125 views

Prevent a process to access internet [closed]

I'm using Delphi and I would like to code a small "loader" that starts an application and hooks all the Socket APIs so it prevents access to the internet. I have a working hook unit to do that but I ...
2
votes
0answers
88 views

How do I determine the host application of a pressed key using a global hook?

I'm interested in keyboard listening in the context of a particular application, like Microsoft Word. Googling showed that the only way to solve this problem is to use a global keyboard hook. A ...
0
votes
0answers
230 views

GetAsyncKeyState with unicode keyboard layout

Here is my vb.net code, 'Declaration Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vkey As Integer) As Short Dim keyPressed As Integer 'code Dim i As Integer For i = 65 To 128 ...
1
vote
0answers
51 views

touch-scroll on winapi

I want to implement touch-scroll like behavior for pure WinAPI program. I spent few days already. I tried few ways so far. Most successful was to disable the whole window with EnableWindow(hwnd, ...
1
vote
1answer
50 views

Win32 How to detect that user has chosen small icons for taskbar?

I'm developing an application in C# which needs to detect when use changed icon size on the taskbar. I know how to check if small icons are enabled/disabled for the user (in registry) but how to ...
0
votes
1answer
56 views

Handling the hook function

I'm trying to use EasyHook in C# to properly hook into a method from a COM object (unmanaged). I was able to determine the address of the method of the COM object and I can properly trigger my hook ...
0
votes
0answers
42 views

Keybd_event() with application with no rights

Currently, I'm coding an application that send special stroke like SHIFT to all the system. My application is running in background, and its goal is to send a SHIFT key to all applications on the ...
1
vote
0answers
110 views

Can AppInit_DLLs be used to hook APIs from Ws2_32.dll?

I'm looking for ways to redirect the outbound TCP/IP connections from a specific port on a Windows client to a different port number. (This is needed to provide a capability to redirect SMB ...
0
votes
1answer
191 views

IAT Hooking ExitProcess on own process

I`d like to ask a question regarding IAT hooking on my own process . I am currently trying to hook ExitProcess so it would run a certain function before any ExitProcess call, and I am facing some ...
0
votes
1answer
119 views

To customize a messagebox, should I hook the messagebox or use CreateWindowEx to create an imitation?

I've been trying to create a MessageBox with changeable, readable text and customizable buttons, I think making a hook for it would probably be easy for this but I read at MSDN: "Hooks tend to slow ...
0
votes
1answer
24 views

Perform an action when a program starts

Let's say I wanted to run a batch file when a specific EXE is started. Are there any hooks for this in the Win32 API? I'm using VCL with Delphi, but general info on this would be nice as well. The ...
0
votes
1answer
200 views

Decrypt EXE on the fly

I have an XXX.EXE which is a result of applying AES to original .EXE I have a host process, which calls CreateProcess on the XXX.EXE There is a decryption method in host process allowing to decrypt ...
0
votes
2answers
394 views

MS Detours Express 3.0 is not hooking CreateFile win32 API function properly

I am trying to hook win32 API function "CreateFile" using MS Detours, but when I test it by opening a *.doc file using MS Word, The CreateFile call for DLLs and font files and directories loaded by MS ...
0
votes
2answers
85 views

Get a notification when a window is set as active

I'm trying to write a basic keylogger in C++ and so far I managed to install a low lever keyboard hook using the win api. It notifies me everytime a key is pressed. I would like to do something ...
-3
votes
1answer
436 views

Most efficient way to code a keylogger? (VB.NET) [closed]

I am designing a key logger to make statistics such as "Most queried Google strings" and such... Users will know it is a key logger and it is not "clandestine". I have looked into the ...
2
votes
1answer
85 views

Need direction with a Win32 API Interception Project

Okay first a little context. I have started working on a project in my uni, one of the goals of which are to develop a module that will log when a process tries to: -create, delete or modify a file ...
0
votes
1answer
64 views

Stop application stealing input

I have a third party application (I'll call it GreedyApp for brevity), which holds the mouse and keyboard input hostage when its window gets focus i.e. it hides the standard mouse cursor and replaces ...
0
votes
0answers
197 views

How does DWM get buffers for application drawing?

It is my understanding that DWM works by keeping buffers for the graphical output of all windows. Programs painting these windows have their output redirected to this buffer. DWM creates DirectX 3D ...
1
vote
1answer
109 views

Detect window running in fullscreen

I currently have a program that compliments a flash game. One of the features it has is to "always stay on top" and this works really well until the game is put into full screen mode. When flash ...
0
votes
0answers
113 views

SetWindowsHookEx not calling my callback?

Well I tried different solution to my problem but It just doesn't work. I call SetWindowsHookExA and then when I press a key the messagebox is not shown. What to do? this is my code (this is a DLL ...
0
votes
0answers
161 views

How to intercept mouse and keyboard events and send custom ones in C++?

Alright, I want to write a program that intercepts mouse and keyboard events before they are reported to the active window/application, whatever that may be. Based on my program logic I want to be ...
0
votes
2answers
76 views

How to know when and which files are changed in windows filesystem with winapi

I make program with spyware features for education, and I need to know in the program when file system is changing file, and what file is being changed. How can I do that in C++?
0
votes
1answer
154 views

How to make a file filter by hooking kernel32.dll

I am a newbie to hooking. I am searching for a python program that can hide files or block it by filtering the results by filtering some of them using win API hooking . I have read that there is also ...
1
vote
2answers
105 views

Hooks - the type or namespace HookType could not be found

I am trying to learn about hooks in the Win32 API with C#. What I am trying to actually do is how to call a command when there is a low-level user activity like a mouse-move or a keystroke. I am ...
0
votes
0answers
99 views

Hooks vs Raw Input API

I have currently created some area of my app by using hooks (for getting pressed keys and mouse clicks), but at that time I didn't know completely about Raw Input API. Is there any point to change the ...
2
votes
1answer
159 views

Windows 8 Share Contract and Clipboard Hooks/Interception

2 questions: 1) Is it possible to hook into the Share Broker in Windows 8 Metro, so that I am able to write a program that gets invoked each time an windows 8 app shares content with another windows ...
2
votes
1answer
448 views

Hooks: why do we need to VirtualProtect() again to restore permissions?

Here is some standard piece of code where we install the hook rewriting some bytes at the beginning of the function of our interest. My question is: why do we need to reprotect a piece of rewrited ...
4
votes
1answer
141 views

Another global hook affects to my global hook

I wrote a global keyboard hook program in C# .NET act like a keylog, it writes results to a file. But i used another program, which supports for type Vietnamese language in same computer- it also uses ...
0
votes
1answer
135 views

Deviarev2 Hook API: Hook into existing process winapi calls?

I want to use Deviare V2 API to intercept winapi calls from a test application. The problem is the hooks and the system calls are in the same process and for this reason the calls aren't intercepted. ...
0
votes
1answer
139 views

Detection Of User-Mode Hooks

Is there a way (programmatically) to detect the List of User-Mode Hooks ? I have tried reading some articles related but could not get through. Any pointers or ideas or samples would be of great help. ...
0
votes
1answer
106 views

How to intercept Sendmessage API

I need to intercept SendMessage API to prevent someone getting text from a particular window by sending WM_GETTEXT . so please suggest me how to do this
0
votes
1answer
372 views

Windows Global Hook C++

i've been reading posts all over and trying different approaches, but i cant make this work. I want to be able to track the last window before the user clicks on my application. This way i can bring ...
0
votes
0answers
62 views

Profiling injected library written in C#

Suppose I have a library that will be injected in some process (managed or unmanaged) to hook some WinAPI calls. And I want to profile it to see if there is much overhead in some hooks. I'm using ...
0
votes
0answers
56 views

windows function table

Given any function address 0x12345678, how are strings related to the address stored ? Strings related to address are: 1) return type 2) calling convention 3) function name 4) parameter list All ...
0
votes
2answers
411 views

Windows API hook, custom save as file dialog to save directly to webserver via POST

I want to write a custom save as dialog that is hooked into the File -> "Save As" of most Windows program. This custom dialog will allow the user to enter their username, password, destination folder ...
1
vote
2answers
90 views

From where do i can start learning about Windows API Hooking? [closed]

I am programming an exploit framework for windows using visual c++ 2008, i want to know more about api hooking, i googled but there are many things i dont understand, are there any guides or ...
0
votes
4answers
163 views

How to know if the keyboard is active on a text input

I have an application that acts like an on screen keyboard, I need it to know if there is a keyboard cursor (caret) active any where, so the keyboard will set to active. I have searched for keyboard ...

1 2 3 4 5 6