Do any serious portable project with C and you'll see why. You'll either need to vendor in all the code you want to link against, or you'll constantly have compilation issues when the OS provided library differs (or doesn't exist at all) from the one you have on your dev box.
- Posts
- 2
- Comments
- 626
- Joined
- 3 yr. ago
- Posts
- 2
- Comments
- 626
- Joined
- 3 yr. ago
I wrote a memory scanner that can regex over a processes memory. Goal was to make it easy to find CTF flags in memory. Dunno how useful it is in reality, but it was a fun tangent.