/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

www.bitsnbites.eu
| | jk.ozlabs.org
1.3 parsecs away

Travel
| |
| | bellard.org
1.7 parsecs away

Travel
| | [AI summary] The author describes the Obfuscated Tiny C Compiler (OTCC), a minimal self-hosting C compiler created for the IOCCC that generated portable i386 ELF executables from a 2048-byte source code limit.
| | dave.cheney.net
2.4 parsecs away

Travel
| | [AI summary] A guide on setting up and using cross-compilation for Go programming to build binaries for different operating systems and architectures.
| | wachter-space.de
23.9 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...