This time we have got a KeyGenMe, which means the task is to write a KeyGen and not just to
Continue readingCategory: Computer
Observer (Design pattern)
In this behavioral design pattern all observer getting notified of a change from a subject they are registered at.
Continue readingFunction pointer vs. std::function vs Function template
Showcase Code ▼ Compiler ▼ – Tool: godbolt.org – Compiler: x86-64 Clang 16.0.0 – Args: -std=c++20 – Output: Intel asm
Continue readingData structures – Overview (libstdc++)
The “C++ standard library” isn’t defining implementation details of the data structures, it just defines their behavior. The libstdc++ is
Continue readingOut of source building (CMake)
When building your project with CMake, make sure to put all generated files in a different folder. Meta build $
Continue readingMemory Management (C++)
1. Automatic allocation – Stack Objects created on the stack, will be cleaned up automatically after they have run out
Continue readingDelete already pushed commits (Git)
The first thing is to checkout the newest commit from the wanted branch. Then you need to get the commit-id
Continue readingSoftware Cracking (Example 1)
0. Building The following crackme sourcecode got build with the C compiler from MinGW as PE x86. 1. Reverse
Continue readingReverse Engineering
The aim of Reverse engineering is to bring executable programs and libraries back into a human understandable code. Therefore exist
Continue readingInterpreter vs. Compiler
Often I read in forums posts like “C is a compiled language” or “PHP is a interpreted language”. But a
Continue reading