Learning Objectives
At the end of this lecture, you should be able to:
- Define the goals of computer security.
- Identify the roles that the OS plays in achieving those goals.
- Define how integrity can be broken through control-flow alteration.
Topics
In this lecture, we will cover the following topics:
- Computer security.
- OS security.
- Control-flow integrity.
- Stack smashing.
Notes
Prerequisites
- To follow up on this lab, make sure you are running an x86 machine (ARM works but would require a lot of changes).
- In most of these programs, we will be compiling things as 32 bits programs
rather 64 bits.
- Things are simpler and easier to visualize when dealing with 32 bit compilations.
- The same concepts can be easily extended to 64-bit machines.
-
You can easily check which architecture you are running on using:
$ uname -m x86_64
- In my case, I am running the Intel x86_64 architecture.
Required Software
- You are most likely running a 64-bit machine, so we will need to cross-compile our code to run a 32-bit version that is easier to understand.
-
To do so, we must install the 32-bit versions of the C compiler and the debugger.
-
From your Linux terminal, run the following command (assuming your are running a flavor of Ubuntu or Debian).
$ sudo apt install -y gdb gdb-multiarch gcc-multilib
Recommended Software
- This activity and later on lab will require heavy use of a debugger.
-
gdb
is your goto debugger for C programs on Linux, and it gladly supports multiple architectures. - However, I recommend that you augment
gdb
withgef
, a set ofgdb
configuration options and scripts that make the kind of analysis we do in this class easier and more visual. -
To install
gef
, from your Linux terminal, run the following:$ bash -c "$(curl -fsSL https://gef.blah.cat/sh)"
- If
curl
is not installed, you can install it usingsudo apt intall -y curl
.
A Note About WSL2
It seems that WSL1 on Windows is not able to run 32 bit applications. To be able
to do this lab, you must be running on WSL2. To upgrade from WSL1 to WSL2,
follow the instructions
here and
here.
If running the wsl
command from Powershell does not work, then you are running
an older version of Windows, and you need to manually upgrade WSL by following
the instructions
here.
Note that you can still run Linux virtual machines on WSL1 if you require them,
you can use the command wsl --set-version <vm-name> 1
from Powershell, where
<vm-name>
is the name of the distribution that you would like to run on WSL1.
Definitions of Security
- ❓ What do you think of when we say security? What is the first thing the
comes to mind? How would you formulate it with respect to what you care about?
- We can’t even quantify security!
- What does it mean to be 90% secure?
- Or how secure are you on a scale of 1 to 5? It means pretty much nothing!
- According to hardcore scientists, security is not even a science!
I often say that when you can measure what you are speaking about, and express it in numbers, you know something about it; but when you cannot measure it, when you cannot express it in numbers, your knowledge is of a meagre and unsatisfactory kind; it may be the beginning of knowledge, but you have scarcely in your thoughts advanced to the state of Science, whatever the matter may be.
- Lord Kelvin
-
There really is no one agreed-upon definition of security, mainly because it is a very hard problem to solve, or to even define.
- Here are a couple of potential definitions:
Cybersecurity is everything that results in protecting information and underlying technology from theft, manipulation, and disruption.
- Rob Joyce, NSA
A computer is secure if you depend on it and its software to behave as expected.
- Garfinkel and Spafford
- Traditional textbook approach classify security properties into three
measures:
- Confidentiality: No unauthorized user can access data they don’t have access to.
- Integrity: No unauthorized modification to data without permission.
- Availability: The system should be usable (no long delays, etc.).
-
The above measures form the CIA triad, but really it cannot encompass everything.
For example, “is overwritten data available?” not really, so the properties are not orthogonal!
Courtney’s Laws
-
Robert Courtney, in RFC 1034, defined some laws that are useful when thinking about security:
-
First law: You cannot say anything interesting (i.e., significant) about the security of a system except in the context of a particular application and environment.
-
Second law: Never spend more money eliminating a security exposure than tolerating it will cost you.
-
First corollary: Perfect security has infinite cost.
-
Second corollary: There is no such thing as zero risk.
-
-
Third law: There is no technical solutions to management problems, but there are management solutions to technical problems.
-