Explore >> Select a destination


You are here

danielnouri.org
| | abstractexpr.com
2.1 parsecs away

Travel
| | Most programmers prefer to write code over debugging it. Unfortunately, code breaks a lot more often than we would like and it often breaks in situations that are hard to debug. Therefore, an essential skill as a programmer is to know how to debug your code (and that of others). When facing our first bug...
| | aykevl.nl
2.6 parsecs away

Travel
| |
| | lazarusoverlook.com
2.5 parsecs away

Travel
| | Learn the basics of the GNU Debugger.
| | wachter-space.de
21.0 parsecs away

Travel
| This is a writeup of an easy/medium pwn challenge called "Profile" featuring a type confusion, some GOT overwriting, and a funny but unnecessary one gadget exploit for the fun of it. We are given the following files: main.c profile (binary) Dockerfile docker-compose.yml Let's look at main.c and see if we can spot a vulnerability from the provided source code. #include #include #include #include struct person_t { int id; int age; char *name; }; void get_value(const char *msg, void *pval) { printf("%s", ms...