180 likes | 200 Views
This showcase by SensePost explores modern programming mishaps and their real-world repercussions. Learn about stack overflow, format string vulnerabilities, dangerous integers, and the importance of fixing code. Discover how even managed code and static analysis tools may not always prevent bugs. Take a closer look at the RealVNC authentication bypass as an example. This presentation aims to answer questions you never thought to ask.
E N D
WHEN GOOD CODE GOES BAD! A SHOWCASE OF MODERN PROGRAMMING MISHAPS (SensePost 2006)
Introduction • Who we are.. (SensePost) • Who we are.. (charl && haroon) • What this talk is about.. • Answer some of those questions you never ask.. • Some real world examples (of shocking code) • Some real world repercussions • Mind the Gap • Constraints…
Agenda • What is this stack overflow stuff? • Then what’s a format string vulnerability? • Hmmm.. What’s all this about dangerous Integers? • What happens if we fix all the code? • Questions..
What’s this Stack Overflow stuff? • This is really old news.. (Morris Worm 1988) • Is it even still a problem? • Super simple explanation: • The Stack.. • Dangerous functions
Super Simple Explanation.. void foo(int a, int b) { char buf1[8]; char buf2[8]; gets(buf2); } int main(void) { foo(1,2); printf(“All done!”) }
Typical Attack.. void foo(int a, int b) { char buf1[8]; char buf2[8]; gets(buf2); } int main(void) { foo(1,2); printf(“All done!”) }
What’s this Stack Overflow stuff? • This is really old news.. (Morris Worm 1988) • Is it even still a problem? • Super simple explanation: • The Stack.. • Dangerous functions • Who would make such a silly mistake? • Everyone… • How easy is this to take advantage of? • Today? Point & Click ownage!
Then what’s a format string bug? • Spot the bug ? • “Safe Version” • See it yet? void syslog(char *buff) { printf(buff) } void syslog(char *buff) { printf(“%s”, buff) }
Then what’s a format string bug? printf(buff); printf(“%s”, buff);
Then what’s a format string bug? buff = “%s”; printf(buff); printf(“%s”, buff); C:\> issa_format.exe
What’s a dangerous Integer? • Same size as a pointer • Fixed size (32 bits for our purposes) • MAXINT + 1 == ? • ISO C99 “Causes Undefined Behavior” • 0xffffffff + 0x1 == 0 {Integer Wrap Around} • Why is this dangerous ?
Ugly Pseudo-Code 1.) get data from user (buffer) 2.) add trailing \0 character 3.) add 1 to length of buffer (for our \0) 4.) If(length > 80) 5.) { 6.) printf(“Sorry your buffer is too long!”; 7.) exit -1 8.) } 9.) else 0.) { copy(other_buffer, buffer); }
What happens if we fix all the code? • The proliferation of “Managed Code” • Better and better static code analysis.. • Is the end in sight for bug hunters? • RealVNC Authentication Bypass • ActiveX Control
RealVNC Authentication Bypass • Discovered by Steve Wiseman of intelliadmin.com (by mistake)
RealVNC Authentication Bypass “show us”
What does this mean? • Vendors: • There are lots of defects that tools can not easily detect.. • (There are lots of defects they can!) • No vendor is safe just because they have deeper pockets (or “more eyeballs”) • ISO’s: • Defense in Depth.. • End-point-security.. • Patch Management ? • If it can happen to Microsoft …
Questions ? haroon@sensepost.com charl@sensepost.com