System Programming Blog
2023-02-07 09:31:00
This blog is dedicated to low level programming in Assembler and C/C++ (although, C++ is unwelcome) in either *Nix or Windows based operating systems.
December 9, 2011
I have recently come across the need to build dynamic link libraries with custom ordinal base (different from 1). After searching the net and seeing lots of people writing their own export macros, I came to a conclusion that Occam's Razor principle still works here and decided to make simple modifications to the original export macro provided with FASM package. The modifications are marked with red.
November 26, 2011
In this article I am going to cover such a trivial (as it may seem) subject as DLL
injection. For some reason, most of the tutorials on the web only give us a brief coverage of the topic,
mostly limited to invocation of LoadLibraryA/W Windows API function in the address space of another
process. While this is not bad at all, it gives us the least flexible solution. Meaning that all the logic
MUST be hardcoded in the DLL we want to inject. On the other hand, we may incorporate all the configuration
management (loading config files, parsing thereof, etc) into our DLL. This is better, but still fills it
with code which is only going to run once.
October 13, 2011
This is the last part of the Hijack Linux System Calls series. By now, we have created a simple loadable kernel module which registers a miscellaneous character device. This means, that we have everything we need in order to patch the system call table. Almost everything, to be honest. We still have to fill the
our_ioctl
function and add a couple of declarations to our source file. By the end of this article we will be able to intercept any system call in our system should there be a need for that.October 4, 2011
We are all familiar with the '
try - except
' constructs from C++ (or Java, etc.) code and we all know what this construct is used for. However, I will try to take us deeper into the underlying exception handling mechanism in this post.