Ctrl+Inject

Created the Saturday 23 March 2019. Updated 6 months, 3 weeks ago.

The "Control Signal Handler Callback" technique involves injecting malicious code into a process by using a callback function for control signal handlers. When a control signal, such as Ctrl+C, is received by a process, the system creates a new thread to execute a function to handle the signal. This thread is typically created by the legitimate process "csrss.exe" in the system, making it more difficult to detect the injected code.

To successfully implement this technique, it is necessary to bypass certain Windows protections such as Pointer Encoding and Control Flow Guard. Pointer encoding is used to protect against pointer corruption, and the technique involves reproducing the encoding to appear legitimate. Control Flow Guard is a security mechanism that prevents memory corruption, such as buffer overflow, and the technique uses the API SetProcessValidCallTargets to validate the call target. By triggering a control signal, the injected code is executed.

Here is a general outline of the process of injecting code using control signal handlers and callback functions:

  1. Determine the address of the callback function for control signals in the target process.

  2. Create a trampoline function that will be used to execute the original code from the callback function after the injection has been applied.

  3. Calculate the relative address of the trampoline function and store it in a jump instruction.

  4. Overwrite the callback function with the jump instruction and the address of the injected code.

  5. Modify the injected code to transfer control back to the trampoline function after executing the desired processing.

  6. Trigger a control signal, such as Ctrl+C, in the target process to execute the injected code.



Featured Windows API's

Below, you will find a list of the most commonly used Windows API's that are currently utilized by malware authors for current evasion technique. This list is meant to provide an overview of the API's that are commonly used for this purpose. If there are any API's that you feel should be included on this list, please do not hesitate to contact us. We will be happy to update the list and provide any additional information or documentation that may be helpful.

Code Snippets

Additional Resources

External Links

The resources provided below are associated links that will give you even more detailed information and research on current evasion technique. It is important to note that, while these resources may be helpful, it is important to exercise caution when following external links. As always, be careful when clicking on links from unknown sources, as they may lead to malicious content.


Sleeping Alien

Subscribe to our Newsletter

Don't miss out on the latest and greatest updates from us! Subscribe to our newsletter and be the first to know about exciting content and future updates.