Format Strings Attacks

Under Contruction

Enjoy a recursive tree blowing in the wind while you wait.
Sorry your browser doesn't support HTML5's <canvas> tag. Please view this page using a modern browser such as Google Chrome.

Uncontrolled format string[1] is a type of software vulnerability, discovered around 1999, that can be used in security exploits. Previously thought harmless, format string exploits can be used to crash a program or to execute harmful code. The problem stems from the use of unchecked user input as the format string parameter in certain C functions that perform formatting, such as printf(). A malicious user may use the %s and %x format tokens, among others, to print data from the stack or possibly other locations in memory. One may also write arbitrary data to arbitrary locations using the %n format token, which commands printf() and similar functions to write the number of bytes formatted to an address stored on the stack.

wikipedia