Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
2answers
6k views

Hooking DirectX EndScene from an injected DLL

I want to detour EndScene from an arbitrary DirectX 9 application to create a small overlay. As an example, you could take the frame counter overlay of FRAPS, which is shown in games when activated. ...
7
votes
3answers
671 views

Dll Injection - What is possible with it?

I was browsing the internet lately, when I stumbled upon Dll Injection. I think its an interesting subject but, I have no clue what the purpose of it is? I have read that it can be used for ...
5
votes
1answer
464 views

C# DLL Injection

Is it possible to inject a DLL file into a process such as explorer or svchost using C#? I know this is possible in C++ but is it in C#? If so would it matter how the DLL was written, e.g. would it ...
5
votes
5answers
622 views

Why Control.FromHandle(IntPtr) returns null in one hooked process and returns valid object of “Form”? in another hooked process?

I am facing a problem related to get out all the controls from some hooked process. My SpyDll launched into hooked process sucessfully, But when I check the statement Control control = ...
5
votes
2answers
496 views

Call a function from C# .exe with unmanaged C++ .dll

So, I have an executable file that was made with C#, I don't have its source code but I have disassembled it with IDA, and it gave me a lot of object oriented assembly. I've made an .exe file that ...
3
votes
1answer
136 views

Hooking sendto() causes crash depending on code ordering

I'm using a DLL-injector to inject a dll which goes into the IAT and replaces the system call sendto() with my own. This is the replace method. void replaceFunction(DWORD f, DWORD nf) { // Base ...
3
votes
5answers
461 views

How can I inject a file into an EXE at runtime and reference the file during program operation?

I'd like a user to download an exe from my website, where (synchronously upon download) an XML file is injected into this application. This XML file contains a public key, and a signature. How do ...
3
votes
5answers
2k views

Getting a handle to the processes main thread

I have created an additional thread in some small testing app and want to suspend the main thread from this additional thread. The additional thread is created via CreateRemoteThread from an external ...
2
votes
1answer
63 views

How to call this assembly function in Inlined ASM in C++ (DLL Injection)

seg000:004481D0 ; =============== S U B R O U T I N E ======================================= seg000:004481D0 seg000:004481D0 ; Attributes: bp-based frame seg000:004481D0 seg000:004481D0 sub_4481D0 ...
2
votes
2answers
132 views

Ejecting after injecting DLL from running process

I wrote this function to inject DLL into running process: DLL_Results CDLL_Loader::InjectDll() { DWORD ThreadTeminationStatus; LPVOID VirtualMem; HANDLE hProcess, hRemoteThread; ...
2
votes
1answer
342 views

How do I strongly name an Unmanaged C++ Dll?

I'm working on a C# application which uses the EasyHook library for DLL Injection. EasyHook requires that any application using it be strongly named. In order to strongly name the application I need ...
2
votes
2answers
250 views

Check if DLL is authentic/correct before running application i C# / .NET

Hi I am trying to figure out how to make sure that a supplied DLL is the correct one. Reason is that our distributed solution is build of many small DLL's each containing certain portions of ...
2
votes
1answer
691 views

Call a function from an injected DLL

First off I would like to say, that I am not trying to hack a game. I am actually employed by the company whose process I am trying to inject. :) I would like to know how to call a function from an ...
2
votes
4answers
485 views

Is it possible in Delphi to get the address of a function/procedure in another process?

I use Madshi's madCodeHook components to Inject a DLL in a process, and then hook a procedure/function. The problem is each time a new version of the EXE comes out the address of the functions may ...
2
votes
4answers
165 views

Using undocumented classes in C++

I'm in the process of reverse-engineering a Windows executable. I found a class that I want to use from some code that I inject into the executable (different thread, own stack). How would I go about ...
2
votes
3answers
296 views
1
vote
0answers
21 views

Win32 Hooks DLL injection into Applications Built against “Any CPU”

I am working on a project which captures all User Interactions. MSDN tells (this) SetWindowsHookEx can be used to inject a DLL into another process. A 32-bit DLL cannot be injected into a 64-bit ...
1
vote
1answer
26 views

Questions about SetWindowsHookEx() and hooking

Here is a little background information. I'm working on replacing a dll that has been used in a dll injection technique via the AppInit_DLLs registry entry. Its purpose was to be present in every ...
1
vote
2answers
130 views

Remote thread is failing on call to LoadLibrary with error 87

I am tring to create a Remote thread that will load a DLL I wrote, and run a function from it. The DLL is working fine (Checked) but from some reason, the Remote thread fails and the proccess in which ...
1
vote
0answers
40 views

Overriding FSGetCatalogInfo via dlsym

I'm trying to get override the FSGetCatalogInfo function under OS X Lion 10.7 using DYLD_INSERT_LIBRARIES, and everything works correctly up to the point that I actually call the original ...
1
vote
2answers
74 views

What's the best way to secure dll files

We have a large application build in C++ builder, that at startup looks at a folder and loads all the present dll files. I figured this might not be such a good thing and tried my thoughts by creating ...
1
vote
1answer
83 views

A GetModuleHandle implementaion

A GetModuleHandle("some.dll") implementation? I need to do it this way because I am in DllMain() therefore, loader lock is held. I've read that GetModuleHandle() also uses the loader lock [page #6] ...
1
vote
2answers
75 views

Verifying process integrity in memory?

It looks like it's impossible to prevent determined attackers from modifying one's process code/data. I'm hoping that its at least possible to detect such tampering. Under Windows, is it possible to ...
1
vote
2answers
143 views

How to subclass Windows Explorer's window

I want to change color of listview of explorer.exe like this I got the handle of listview window by GetTopWindow function and his family. To subclass listview window of explorer.exe, I ...
1
vote
1answer
383 views

C++ function hook inside source code of DLL

I have the source code from a C++ DLL. This DLL is part of an applicaton. I want to hook a function loaded in memory by another DLL, so that my hooked function gets called by all other DLL's instead ...
1
vote
1answer
142 views

Preventing DLL Uninjection

I am injecting a dll into a process which the help of a method InjectLibrary from MadCHook library. I was able to do it successfully. But then i tried to uninject it through a completely separate C++ ...
1
vote
1answer
150 views

How to catch EVERY exception in C++/Windows?

I have a DLL that's being injected into very old, buggy and now unsupported by it's developer application. Sometimes that application crashes, and I need some way to catch literally all unhandled ...
1
vote
2answers
70 views

reliably monitor/track/log user file accesses on Windows 7

I need to track all files accessed (created, opened, read) by a user and log these actions for further processing within a separate application. I have investigated and searched for possible ways to ...
1
vote
0answers
90 views

How to serialize the data from hooked process for injector in C# and C++/CLI?

I am facing a strange problem while serializing the data from hooked process for injector (which injected the spy dll into some other process). I am successfully landing spy dll into other managed ...
1
vote
1answer
121 views

Detecting DLL Code Splicing

I'm trying to write some functions to detect DLL code splicing. I take dll code splicing to mean modifying the bytes at the start of functions in loaded dll's, so that instead of jumping to the full ...
1
vote
1answer
541 views

Hook keyboard from injected DLL using KeyboardProc / SetWindowsHookEx

Note: I am working in plain C. Not C++, not C#. I am working on a mod. I've already written a working DLL-injector, as well as the DLL to be injected. Everything is going well, apart from the ...
1
vote
7answers
238 views

Change the address of a member function in C++

in C++, I can easily create a function pointer by taking the address of a member function. However, is it possible to change the address of that local function? I.e. say I have funcA() and funcB() ...
1
vote
4answers
227 views

Grabbing memory from another process

in Windows, lets say I have used DLL Injection to get into another process. I have also done some screencaptures of the memory on the process I have injected into and know the location of the data I ...
0
votes
1answer
17 views

Simple DLL injection not working using AppInit_DLLs. DllMain() not getting called

I've written the simplest injection dll possible. Here is the code in its entirety: #include "stdafx.h" #include <stdio.h> BOOL APIENTRY DllMain(HANDLE hModule, DWORD ...
0
votes
2answers
101 views

Window Maximum Maximise

I am looking to create a program where I can set the maximum maximize size (as in the size the window maximises to when you hit the maximise button) and maximize position (X/Y coordinated for the ...
0
votes
2answers
146 views

Injected dll crashes the owner process. Why?

I have a dll that I injected in a process. It searches 'file://' until it finds invalid symbol. After a few mins it crashes the main process. Why is that? How can I check? I found that with smaller ...
0
votes
0answers
51 views

Possible to inject DLL to run before a specific method in target process?

I have a DLL that I can inject into a target process that loads the .NET runtime and executes C# code. However, this C# code only executes once (upon injection). So two questions really: a) Is there ...
0
votes
0answers
160 views

Injecting DLL that starts .NET runtime corrupts clr.dll

I've been trying to load the .NET runtime using some code from MSDN Community Goodies and my own C++ injection code. I inject a C++ DLL that calls the .NET loading code from MSDN. Both these ...
0
votes
3answers
164 views

Variable keeps getting set to NULL after function in DLL

I need valid data to be in the global variable QObject *p. However, assigning anything to this variable inside of a function works within the scope of the function, but after the function returns, p ...
0
votes
2answers
657 views

Windows 7 DLL Injection

I am trying to inject a dll into an existing process. I am trying to use the CreateRemoteThread LoadLibrary way. I understand how it works, but I cannot figure out why CreateRemoteThread is returning ...
0
votes
1answer
61 views

How to make a DLL optional in a .Net app

We have an app the requires Full Trust because of a Chilkat .NET 3.5 DLL This has not been a huge issue, however we would like to submit our app to the: Windows Web Application Gallery and it must be ...
0
votes
1answer
114 views

DLL Injection, threads and memory releasing

I have a following situation - i inject a dll written in C into another process, that dll loads CLR and starts a thread calling a method from managed class library. My question is - how and when ...
0
votes
1answer
251 views

How to update deployed class library (DLL)?

Currently I have a C# solution that contains a class library, installer, and setup projects. The setup project generates an MSI to install my class library (dll), registered vsdrfCOM, that is ...
0
votes
0answers
371 views

Inject a dll to a specific process using SetWindowsHookEx

// cptnhook.cpp : Defines the exported functions for the DLL application. // #include "stdafx.h" #pragma data_seg (".shared") HHOOK hhk; #pragma data_seg () #pragma ...
0
votes
0answers
264 views

Access debugged application's memory from DLL expert running within the Delphi IDE

I used to debug a program that creates a temporary table. Server database - Informix. Program runs through BDE :). I have an expert, created for this project. Expert - dll for IDE Delphi5. I want to ...
0
votes
2answers
608 views

WinAPI Get access to another application's controls

I need to get list of all controls from win calculator (calc.exe) and press buttons on calc from my application. I tried code injection and now could execute my code from calc application. In the ...
0
votes
0answers
91 views

Intercepting the Move command in Windows

I am working on a plugin for a document tagging software. I would like to intercept the MOVE operation in Windows explorer , and let the tagging software handle it instead . I was thinking about ...
0
votes
1answer
147 views

injecting dll not working?

i have created a simple dll. I am injecting it in a process but it not showing message box.The code for mesg box is written in dll. dll code: //DLL TEST #include <windows.h> BOOL APIENTRY ...
0
votes
1answer
472 views

dll injection using C

hey i m trying to inject a dll into a process i.e lsass.exe to get hashes.Its a bit hacky but cant help its my project. I have a code of dll injection but in visual C++ it gives errors such as.. at ...
0
votes
2answers
419 views

finding a loaded dll using a CreateToolHelp32Snapshot, finding a function within the dll and then calling it, GetProcAddress

I'm trying to get a handle to a function within a .dll. I am creating a CreateToolHelp32Snapshot and then enumerating over the modules until I find the one I want, from that .dll I want to find a ...

1 2