secure programming

26
SECURE PROGRAMMING An anti-hacking guide

Upload: sybil

Post on 24-Feb-2016

40 views

Category:

Documents


1 download

DESCRIPTION

An anti-hacking guide. Secure programming . Hackers are kindred of expert programmers who believe in freedom and spirit of mutual help. They are not malicious. They may be tied to the common belief described aptly by the modern Zen poem stating: - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: Secure programming

SECURE PROGRAMMING An anti-hacking guide

Page 2: Secure programming

WHO IS A HACKER? Hackers are kindred of expert programmers who

believe in freedom and spirit of mutual help. They are not malicious. They may be tied to the common belief described aptly by the modern Zen poem stating:

To follow the path:look to the master, follow the master,

walk with the master, see through the master,

become the master.

Page 3: Secure programming

WHO IS AN ATTACKER/CRACKER? The malicious individuals who break into programs

and systems in order to do damage or to steal something are referred to as crackers or attackers. Most attackers are not highly skilled, but take advantage of published exploit code and known techniques to do their damage.

Most attackers are not as highly skilled as hackers are, they take advantage of published exploits. Such people who use published code to attack software and computer systems are called script kiddies.

Page 4: Secure programming

WHY SHOULD I BOTHER ABOUT AN ATTACKER?

The new Boeing 787 Dreamliner aircraft provides on board internet access to its passengers but concerns were raised about the fact that the flight’s controls were connected to the same network serving internet access to the passengers! What could it mean?

What if an Iraqi or Afghan hacker breaks open the networks at Pentagon’s missile stations?

Or talking about something that’s close to our chores, what if we leave loopholes in the SPFS codebase which may be exploited to crack the Core Billing Manager? What would it mean to the company that deploys the CBM application?

Page 5: Secure programming

WHAT CAN AN ATTACKER DO TO YOUR CODE?

There are numerous ways an attacker may break applications apart. We’ll take two specifically notorious and very widely used techniques of exploiting software, namely:

SQL InjectionBuffer Overflows

Page 6: Secure programming

SQL INJECTION

Page 7: Secure programming

SQL INJECTION: WHAT IS IT? SQL injection is a technique that

exploits a security vulnerability occurring in the database layer of an application.

When an end user is asked for his/her credentials an attacker may inject malicious queries into the database if user input is not strongly typed.

Page 8: Secure programming

SQL INJECTION: WHAT IS IT?

Page 9: Secure programming

SQL INJECTION: WHAT IS IT? How would the code for checking the

username in the login prompt look like?statement := "SELECT * FROM users WHERE name = '" + userName + "';“

Do you see anything wrong with this SQL code?

Is it vulnerable?

Page 10: Secure programming

SQL INJECTION: WHAT IS IT? NO? What if an attacker entered the

following username?a' or 't'='t

In the original query the completed entry would look something like,SELECT * FROM users WHERE name = 'a' OR 't'='t';

Do you think this username will ever be wrong?

Page 11: Secure programming

SQL INJECTION: WHAT IS IT? And what if a certain noble human being entered

the following username?

‘ OR 1=1;DROP TABLE users;--

The original query will now look like:

SELECT * FROM users WHERE name = ‘‘ OR 1=1;DROP TABLE users;--

As you may see this query will delete the users table completely and comment out any further queries in the statement.

Page 12: Secure programming

SQL INJECTION: IS IT REALLY DANGEROUS? On November 01, 2005, A high school student

used SQL injection to break into the site of a Taiwanese information security magazine and stole customer's information.

On January 13, 2006, Russian hackers broke into a Rhode Island government web site and allegedly stole credit card data from individuals who have done business online with state agencies.

On June 29, 2007, A hacker defaced Microsoft U.K. Web Page using SQL injection.

Page 13: Secure programming

SQL INJECTION: THE MEASURES! Input Validation is GOSPEL:

Always perform strict type checking of all data input by users.

Don’t ever trust the user. They’re not always noble and trustworthy.

Limit the length of input. Never use of any of the default database

accounts.

Page 14: Secure programming

BUFFER/STACK OVERFLOW

Page 15: Secure programming

BUFFER OVERFLOWS: WHAT ARE THEY?void foo(char *bar){ char c[12]; strcpy(c,bar); }int main(int argc,char *argv[]){ foo(argv[1]); return 0;}

Page 16: Secure programming

BUFFER OVERFLOWS: WHAT ARE THEY?

void foo(char *bar){ char c[12]; strcpy(c,bar); /* No bounds checking!! */ }int main(int argc,char *argv[]){ foo(argv[1]); return 0;}

Page 17: Secure programming

BUFFER OVERFLOW: STACK VIEW OF THE CODE

Before data is copied.

Page 18: Secure programming

BUFFER OVERFLOW: STACK VIEW OF THE CODE

When legitimate data is copied, INPUT: "hello"

Page 19: Secure programming

BUFFER OVERFLOW: STACK VIEW OF THE CODE

When you’re hacked! INPUT: "AAAAAAAAAAAAAAAAAAAA\x08\x35\xC0\x80"

Page 20: Secure programming

BUFFER OVERFLOW: THE TRICK! As seen above, an attacker may send junk

input to your program and change the return address of functions to anywhere in memory he likes to. That memory location could very well contain attacker implanted code! And imagine, what would happen if the program above was running with super user privileges!

One could also modify data contained in variables using buffer overflow!

Page 21: Secure programming

BUFFER OVERFLOW: THE CAUSE Functions like strcpy(), gets(), strcat(),

sprintf() etc. don’t perform a bounds check on the destination buffer. This allows an attacker to copy unsolicited data into the buffer!

C and C++ are two languages that don’t perform any bounds checking on the input and are hence vulnerable if one is not careful while writing code.

Page 22: Secure programming

BUFFER OVERFLOW: IS THERE A WAY OUT! Always use the safe alternatives to strcpy(), strcat(), gets(), sprintf() etc. like strncpy(), strncat(), fgets(), snprintf()!

Always fail safely, which means perform error checking and exception handling at every possible place in the code. Remember, don’t trust the user!

Grant minimum required privileges to your programs.

Page 23: Secure programming

BUFFER OVERFLOW: COMMERCIALLY SOLUTIONS!

Use static code analyzers before you deploy your code!

Use Stack Canaries! Use safe libraries! Use Stack Smashing!

Page 24: Secure programming

NO CODE IS BUG FREE, BUT PREVENTION IS BETTER

THAN CURE!

Page 25: Secure programming

QUESTIONS

Page 26: Secure programming

THANK YOU!