Introduction to Hacking: Authentication Testing and Basic Security Exploits

Date: 22/07/2025

Have you ever wondered how software crackers bypass password checks or remove license restrictions from applications? At the heart of this process lies a skill called reverse engineering — and one of its most accessible tools is the debugger. In this article, we’ll take a beginner-friendly look at how to analyze and modify a simple password-protected program using a debugger, revealing the logic behind its checks and even altering its behavior.
Read full article →


Learning heterogeneous parallelism in C++ with AMP

Date: 29/09/2015

At first, GPUs could be used for a very narrow range of tasks (try to guess what), but they looked very attractive, and software developers decided to use their power for allocating a part of computing to graphics accelerators. Since GPU cannot be used in the same way as CPU, this required new tools that did not take long to appear. This is how originated CUDA, OpenCL and DirectCompute. The new wave was named ‘GPGPU’ (General-purpose graphics processing units) to designate the technique of using GPU for general purpose computing. As a result, people began to use a number of completely different microprocessors to solve some very common tasks. This gave rise to the term “heterogeneous parallelism”, which is actually the topic of our today’s discussion.

Read full article →