You are here |
tcode2k16.github.io | ||
| | | |
pwning.net
|
|
| | | | CTF Team @ Carnegie Mellon University | |
| | | |
karmanyaah.malhotra.cc
|
|
| | | | ||
| | | |
wachter-space.de
|
|
| | | | 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... | |
| | | |
taeluralexis.com
|
|
| | In this writeup, we'll exploit a Linux machine on Hack The Box with CVE-2023-46604, leveraging Java deserialization for remote code execution. |