Explore >> Select a destination


You are here

hyperbo.la
| | www.timdbg.com
3.5 parsecs away

Travel
| |
| | liveoverflow.com
4.7 parsecs away

Travel
| | In our attempt to "re-discover" the sudoedit vulnerability (CVE-2021-3156), we use the address sanitation tool to investigate a heap overflow. After fixing it, we investigate several other unique crashes registered by the AFL fuzzer.
| | blog.viraptor.info
5.4 parsecs away

Travel
| |
| | blog.oddbit.com
24.3 parsecs away

Travel
| Overview I was recently working with someone else's C source and I wanted to add some basic error checking without mucking up the code with a bunch of if statements and calls to perror. I ended up implementing a simple must function that checks the return value of an expression, and exits with an error if the return value is less than 0. You use it like this: must(fd = open("textfile.txt", O_RDONLY)); Or: