Skip to content

Hook windows code with _penter and _pexit ( Unicode, Multi byte, 32 bit , 64 bit)

License

Notifications You must be signed in to change notification settings

PrakaramJoshi/Interceptor

Repository files navigation

Interceptor


Interceptor is a library which helps to generate runtime call diagrams for applications. Using this library you can also see in realtime which functions are being executed at any moment. The purpose to write this was to help a developer understand the dynamics of the application and how various functions/classes interact with each other at runtime. The image below shows the output for the following code snippet when run
Code Snippet


Timeline graph

All the functions are arranged left to right in the order they were first run.
Blue connection shows a function on the left called function on the right.
Red connection shows a function on the right called function on the left.

#Usage:
Link your application with this library (see instructions below on what changes are required in your application). Place the Interceptor.config in the directory where your applications's executable is present. Then run your application. Interceptor will generate the TImeline graph/Call Dependency Graph / or in real time show the function calls. This is for Windows Only.

#How to integrate with an application:
Interceptor implements _penter and _pexit (x86 and x64) and uses the generated hooks to track function calls. Any Project can use Interceptor to see live function calls or dependency wheel for the functions by following these steps:
     1) Turn off all optimizations(linker and compiler)
     2) add /Gh /GH flags to compile options( commandline options)
     3) set Project>Property Pages> C/C++ > Code Generation > Basic Runtime checks to Both(/RTC1,equiv. to /RTCsu)(/RTC1)
     4) In the Linker options , specify Interceptor.lib as an input
     5) Re-compile your project.
     6) Place the Interceptor.dll in the directory where the executable is generated.
     7) place Interceptor.config there to specify custom settings

#Build:
Interceptor solution builds with Visual studio 2015. The solution has two projects :
     1) Interceptor : This creates the Interceptor.dll/lib
     2) InterceptorTest: This is a demo project.

About

Hook windows code with _penter and _pexit ( Unicode, Multi byte, 32 bit , 64 bit)

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published