handouts/ho03.tex
author Christian Urban <christian dot urban at kcl dot ac dot uk>
Fri, 21 Nov 2014 14:35:56 +0000
changeset 323 0629590fd299
parent 287 0b9a16ddd625
child 326 6e4e9bdedf7b
permissions -rw-r--r--
update
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
156
3b831b9dc616 added some initial handouts
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
     1
\documentclass{article}
3b831b9dc616 added some initial handouts
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
     2
\usepackage{../style}
206
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
     3
\usepackage{../langs}
258
8cf5450bb2aa added plot
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 257
diff changeset
     4
\usepackage{../graphics}
8cf5450bb2aa added plot
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 257
diff changeset
     5
\usepackage{../data}
156
3b831b9dc616 added some initial handouts
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
     6
3b831b9dc616 added some initial handouts
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
     7
\begin{document}
3b831b9dc616 added some initial handouts
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
     8
3b831b9dc616 added some initial handouts
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
     9
\section*{Handout 3 (Buffer Overflow Attacks)}
3b831b9dc616 added some initial handouts
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    10
3b831b9dc616 added some initial handouts
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    11
By far the most popular attack method on computers are buffer
237
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
    12
overflow attacks or variations thereof. The first Internet
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
    13
worm (Morris) exploited exactly such an attack. The popularity
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
    14
is unfortunate because we nowadays have technology in place to
229
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
    15
prevent them effectively. But these kind of attacks are still
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
    16
very relevant even today since there are many legacy systems
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
    17
out there and also many modern embedded systems often do not
258
8cf5450bb2aa added plot
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 257
diff changeset
    18
take any precautions to prevent such attacks. The plot below shows
259
f96d3e48ed3d updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 258
diff changeset
    19
the percentage of buffer overflow attacks listed in the US National 
f96d3e48ed3d updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 258
diff changeset
    20
Vulnerability Database.\footnote{Search for ``Buffer errors'' at 
f96d3e48ed3d updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 258
diff changeset
    21
\url{http://web.nvd.nist.gov/view/vuln/statistics}.}
258
8cf5450bb2aa added plot
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 257
diff changeset
    22
8cf5450bb2aa added plot
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 257
diff changeset
    23
\begin{center}
8cf5450bb2aa added plot
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 257
diff changeset
    24
\begin{tikzpicture}
8cf5450bb2aa added plot
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 257
diff changeset
    25
\begin{axis}[
8cf5450bb2aa added plot
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 257
diff changeset
    26
    xlabel={year},
8cf5450bb2aa added plot
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 257
diff changeset
    27
    ylabel={\% of total attacks},
259
f96d3e48ed3d updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 258
diff changeset
    28
    ylabel style={yshift=-1em},
258
8cf5450bb2aa added plot
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 257
diff changeset
    29
    enlargelimits=false,
259
f96d3e48ed3d updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 258
diff changeset
    30
    xtick={1997,1998,2000,...,2014},
f96d3e48ed3d updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 258
diff changeset
    31
    xmin=1996.5,
258
8cf5450bb2aa added plot
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 257
diff changeset
    32
    xmax=2015,
259
f96d3e48ed3d updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 258
diff changeset
    33
    ymax=21,
263
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
    34
    ytick={0,5,...,20},
258
8cf5450bb2aa added plot
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 257
diff changeset
    35
    scaled ticks=false,
8cf5450bb2aa added plot
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 257
diff changeset
    36
    axis lines=left,
259
f96d3e48ed3d updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 258
diff changeset
    37
    width=12cm,
258
8cf5450bb2aa added plot
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 257
diff changeset
    38
    height=5cm,
8cf5450bb2aa added plot
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 257
diff changeset
    39
    ybar,
259
f96d3e48ed3d updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 258
diff changeset
    40
    nodes near coords=
f96d3e48ed3d updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 258
diff changeset
    41
     {\footnotesize
f96d3e48ed3d updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 258
diff changeset
    42
      $\pgfmathprintnumber[fixed,fixed zerofill,precision=1,use comma]{\pgfkeysvalueof{/data point/y}}$},
f96d3e48ed3d updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 258
diff changeset
    43
    x tick label style={font=\footnotesize,/pgf/number format/1000 sep={}}]
258
8cf5450bb2aa added plot
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 257
diff changeset
    44
\addplot
8cf5450bb2aa added plot
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 257
diff changeset
    45
  table [x=Year,y=Percentage] {bufferoverflows.data};
8cf5450bb2aa added plot
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 257
diff changeset
    46
\end{axis}
8cf5450bb2aa added plot
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 257
diff changeset
    47
\end{tikzpicture}
8cf5450bb2aa added plot
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 257
diff changeset
    48
\end{center}
8cf5450bb2aa added plot
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 257
diff changeset
    49
263
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
    50
\noindent This statistics indicates that in the last
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
    51
five years or so the number of buffer overflow attacks is
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
    52
around 10\% of all attacks (whereby the absolute numbers of
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
    53
attacks grow each year).
259
f96d3e48ed3d updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 258
diff changeset
    54
156
3b831b9dc616 added some initial handouts
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    55
211
e6e160c7ea33 added files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 209
diff changeset
    56
To understand how buffer overflow attacks work, we have to have
156
3b831b9dc616 added some initial handouts
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    57
a look at how computers work ``under the hood'' (on the
3b831b9dc616 added some initial handouts
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    58
machine level) and also understand some aspects of the C/C++
3b831b9dc616 added some initial handouts
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    59
programming language. This might not be everyday fare for
3b831b9dc616 added some initial handouts
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    60
computer science students, but who said that criminal hackers
3b831b9dc616 added some initial handouts
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    61
restrict themselves to everyday fare? Not to mention the
3b831b9dc616 added some initial handouts
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    62
free-riding script-kiddies who use this technology without
227
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
    63
even knowing what the underlying ideas are. If you want to be
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
    64
a good security engineer who needs to defend such attacks, 
229
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
    65
then better you get to know the details.
156
3b831b9dc616 added some initial handouts
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    66
 
206
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
    67
For buffer overflow attacks to work, a number of innocent
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
    68
design decisions, which are really benign on their own, need
229
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
    69
to conspire against you. All these decisions were taken at a
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
    70
time when there was no Internet: C was introduced around 1973;
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
    71
the Internet TCP/IP protocol was standardised in 1982 by which
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
    72
time there were maybe 500 servers connected (and all users
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
    73
were well-behaved, mostly academics); Intel's first 8086 CPUs
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
    74
arrived around 1977. So nobody of the ``forefathers'' can
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
    75
really be blamed, but as mentioned above we should already be
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
    76
way beyond the point that buffer overflow attacks are worth a
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
    77
thought. Unfortunately, this is far from the truth. I let you
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
    78
ponder why?
206
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
    79
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
    80
One such ``benign'' design decision is how the memory is laid
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
    81
out into different regions for each process. 
204
8fe0dc898c73 added example1
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 196
diff changeset
    82
 
206
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
    83
\begin{center}
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
    84
  \begin{tikzpicture}[scale=0.7]
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
    85
  %\draw[step=1cm] (-3,-3) grid (3,3);
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
    86
  \draw[line width=1mm] (-2, -3) rectangle (2,3);
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
    87
  \draw[line width=1mm] (-2,1) -- (2,1);
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
    88
  \draw[line width=1mm] (-2,-1) -- (2,-1);
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
    89
  \draw (0,2) node {\large\tt text};
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
    90
  \draw (0,0) node {\large\tt heap};
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
    91
  \draw (0,-2) node {\large\tt stack};
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
    92
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
    93
  \draw (-2.7,3) node[anchor=north east] {\tt\begin{tabular}{@{}l@{}}lower\\ address\end{tabular}};
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
    94
  \draw (-2.7,-3) node[anchor=south east] {\tt\begin{tabular}{@{}l@{}}higher\\ address\end{tabular}};
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
    95
  \draw[->, line width=1mm] (-2.5,3) -- (-2.5,-3);
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
    96
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
    97
  \draw (2.7,-2) node[anchor=west] {\tt grows};
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
    98
  \draw (2.7,-3) node[anchor=south west] {\tt\footnotesize older};
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
    99
  \draw (2.7,-1) node[anchor=north west] {\tt\footnotesize newer};
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   100
  \draw[|->, line width=1mm] (2.5,-3) -- (2.5,-1);
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   101
  \end{tikzpicture}
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   102
\end{center}
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   103
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   104
\noindent The text region contains the program code (usually
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   105
this region is read-only). The heap stores all data the
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   106
programmer explicitly allocates. For us the most interesting
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   107
region is the stack, which contains data mostly associated
227
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   108
with the control flow of the program. Notice that the stack
230
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   109
grows from higher addresses to lower addresses (i.e.~from the
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   110
back to the front). That means that older items on the stack
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   111
will be stored behind, or after, newer items. Let's look a bit
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   112
closer what happens with the stack when a program is running.
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   113
Consider the following simple C program.
206
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   114
 
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   115
\lstinputlisting[language=C]{../progs/example1.c} 
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   116
 
229
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   117
\noindent The \code{main} function calls in Line 7 the
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   118
function \code{foo} with three arguments. \code{Foo} creates
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   119
two (local) buffers, but does not do anything interesting with
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   120
them. The only purpose of this program is to illustrate what
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   121
happens behind the scenes with the stack. The interesting
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   122
question is what will the stack be after Line 3 has been
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   123
executed? The answer can be illustrated as follows:
206
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   124
 
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   125
\begin{center} 
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   126
 \begin{tikzpicture}[scale=0.65]
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   127
  \draw[gray!20,fill=gray!20] (-5, 0) rectangle (-3,-1);
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   128
  \draw[line width=1mm] (-5,-1.2) -- (-5,0.2);
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   129
  \draw[line width=1mm] (-3,-1.2) -- (-3,0.2);
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   130
  \draw (-4,-1) node[anchor=south] {\tt main};
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   131
  \draw[line width=1mm] (-5,0) -- (-3,0);
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   132
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   133
  \draw[gray!20,fill=gray!20] (3, 0) rectangle (5,-1);
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   134
  \draw[line width=1mm] (3,-1.2) -- (3,0.2);
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   135
  \draw[line width=1mm] (5,-1.2) -- (5,0.2);
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   136
  \draw (4,-1) node[anchor=south] {\tt main};
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   137
  \draw[line width=1mm] (3,0) -- (5,0);
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   138
 
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   139
   %\draw[step=1cm] (-3,-1) grid (3,8);
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   140
  \draw[gray!20,fill=gray!20] (-1, 0) rectangle (1,-1);
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   141
  \draw[line width=1mm] (-1,-1.2) -- (-1,7.4);
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   142
  \draw[line width=1mm] ( 1,-1.2) -- ( 1,7.4);
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   143
  \draw (0,-1) node[anchor=south] {\tt main};
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   144
  \draw[line width=1mm] (-1,0) -- (1,0);
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   145
  \draw (0,0) node[anchor=south] {\tt arg$_3$=3};
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   146
  \draw[line width=1mm] (-1,1) -- (1,1);
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   147
  \draw (0,1) node[anchor=south] {\tt arg$_2$=2};
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   148
  \draw[line width=1mm] (-1,2) -- (1,2);
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   149
  \draw (0,2) node[anchor=south] {\tt arg$_1$=1};
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   150
  \draw[line width=1mm] (-1,3) -- (1,3);
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   151
  \draw (0,3.1) node[anchor=south] {\tt ret};
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   152
  \draw[line width=1mm] (-1,4) -- (1,4);
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   153
  \draw (0,4) node[anchor=south] {\small\tt last sp};
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   154
  \draw[line width=1mm] (-1,5) -- (1,5);
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   155
  \draw (0,5) node[anchor=south] {\tt buf$_1$};
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   156
  \draw[line width=1mm] (-1,6) -- (1,6);
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   157
  \draw (0,6) node[anchor=south] {\tt buf$_2$};
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   158
  \draw[line width=1mm] (-1,7) -- (1,7);
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   159
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   160
  \draw[->,line width=0.5mm] (1,4.5) -- (1.8,4.5) -- (1.8, 0) -- (1.1,0); 
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   161
  \draw[->,line width=0.5mm] (1,3.5) -- (2.5,3.5);
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   162
  \draw (2.6,3.1) node[anchor=south west] {\tt back to main()};
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   163
\end{tikzpicture}
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   164
\end{center} 
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   165
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   166
\noindent On the left is the stack before \code{foo} is
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   167
called; on the right is the stack after \code{foo} finishes.
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   168
The function call to \code{foo} in Line 7 pushes the arguments
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   169
onto the stack in reverse order---shown in the middle.
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   170
Therefore first 3 then 2 and finally 1. Then it pushes the
229
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   171
return address onto the stack where execution should resume
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   172
once \code{foo} has finished. The last stack pointer
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   173
(\code{sp}) is needed in order to clean up the stack to the
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   174
last level---in fact there is no cleaning involved, but just
263
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   175
the top of the stack will be set back to this address. So the
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   176
last stack pointer also needs to be stored. The two buffers
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   177
inside \pcode{foo} are on the stack too, because they are
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   178
local data within \code{foo}. Consequently the stack in the
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   179
middle is a snapshot after Line 3 has been executed. In case
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   180
you are familiar with assembly instructions you can also read
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   181
off this behaviour from the machine code that the \code{gcc}
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   182
compiler generates for the program above:\footnote{You can
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   183
make \pcode{gcc} generate assembly instructions if you call it
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   184
with the \pcode{-S} option, for example \pcode{gcc -S out
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   185
in.c}\;. Or you can look at this code by using the debugger.
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   186
How to do this will be explained later.}
206
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   187
227
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   188
\begin{center}\small
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   189
\begin{tabular}[t]{@{}c@{\hspace{8mm}}c@{}}
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   190
{\lstinputlisting[language={[x86masm]Assembler},
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   191
  morekeywords={movl},xleftmargin=5mm]
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   192
  {../progs/example1a.s}} &
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   193
{\lstinputlisting[language={[x86masm]Assembler},
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   194
  morekeywords={movl,movw},xleftmargin=5mm]
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   195
  {../progs/example1b.s}}  
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   196
\end{tabular}
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   197
\end{center}
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   198
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   199
\noindent On the left you can see how the function
229
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   200
\pcode{main} prepares in Lines 2 to 7 the stack before calling
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   201
the function \pcode{foo}. You can see that the numbers 3, 2, 1
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   202
are stored on the stack (the register \code{$esp} refers to
263
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   203
the top of the stack; \pcode{$0x1}, \pcode{$0x2} \pcode{$0x3}
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   204
are the encodings for \pcode{1} to \pcode{3}). On the right
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   205
you can see how the function \pcode{foo} stores the two local
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   206
buffers onto the stack and initialises them with the given
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   207
data (Lines 2 to 9). Since there is no real computation going
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   208
on inside \pcode{foo}, the function then just restores the
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   209
stack to its old state and crucially sets the return address
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   210
where the computation should resume (Line 9 in the code on the
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   211
left-hand side). The instruction \code{ret} then transfers
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   212
control back to the function \pcode{main} to the the
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   213
instruction just after the call to \pcode{foo}, that is Line
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   214
9.
206
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   215
 
230
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   216
Another part of the ``conspiracy'' of buffer overflow attacks
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   217
is that library functions in C look typically as follows:
206
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   218
 
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   219
\begin{center}
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   220
\lstinputlisting[language=C,numbers=none]{../progs/app5.c}
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   221
\end{center} 
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   222
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   223
\noindent This function copies data from a source \pcode{src}
209
fd43a9cd9c07 updates
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 206
diff changeset
   224
to a destination \pcode{dst}. The important point is that it
fd43a9cd9c07 updates
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 206
diff changeset
   225
copies the data until it reaches a zero-byte (\code{"\\0"}). 
230
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   226
This is a convention of the C language which assumes all
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   227
strings are terminated by such a zero-byte.
206
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   228
227
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   229
The central idea of the buffer overflow attack is to overwrite
230
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   230
the return address on the stack. This address decides where
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   231
the control flow of the program should resume once the
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   232
function at hand has finished its computation. So if we 
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   233
can control this address, then we can modify the control
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   234
flow of a program. To launch an attack we need 
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   235
somewhere in a function a local a buffer, say
227
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   236
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   237
\begin{center}
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   238
\code{char buf[8];}
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   239
\end{center}
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   240
230
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   241
\noindent which is filled by some user input. The
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   242
corresponding stack of such a function will look as follows
227
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   243
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   244
\begin{center}
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   245
 \begin{tikzpicture}[scale=0.65]
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   246
  %\draw[step=1cm] (-3,-1) grid (3,8);
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   247
  \draw[gray!20,fill=gray!20] (-1, 0) rectangle (1,-1);
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   248
  \draw[line width=1mm] (-1,-1.2) -- (-1,6.4);
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   249
  \draw[line width=1mm] ( 1,-1.2) -- ( 1,6.4);
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   250
  \draw (0,-1) node[anchor=south] {\tt main};
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   251
  \draw[line width=1mm] (-1,0) -- (1,0);
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   252
  \draw (0,0) node[anchor=south] {\tt arg$_3$=3};
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   253
  \draw[line width=1mm] (-1,1) -- (1,1);
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   254
  \draw (0,1) node[anchor=south] {\tt arg$_2$=2};
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   255
  \draw[line width=1mm] (-1,2) -- (1,2);
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   256
  \draw (0,2) node[anchor=south] {\tt arg$_1$=1};
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   257
  \draw[line width=1mm] (-1,3) -- (1,3);
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   258
  \draw (0,3.1) node[anchor=south] {\tt ret};
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   259
  \draw[line width=1mm] (-1,4) -- (1,4);
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   260
  \draw (0,4) node[anchor=south] {\small\tt last sp};
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   261
  \draw[line width=1mm] (-1,5) -- (1,5);
229
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   262
  \draw (0,5.1) node[anchor=south] {\tt buf};
227
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   263
  \draw[line width=1mm] (-1,6) -- (1,6);
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   264
  \draw (2,5.1) node[anchor=south] {\code{$esp}};
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   265
  \draw[<-,line width=0.5mm] (1.1,6) -- (2.5,6);
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   266
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   267
  \draw[->,line width=0.5mm] (1,4.5) -- (2.5,4.5);
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   268
  \draw (2.6,4.1) node[anchor=south west] {\code{??}};
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   269
  
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   270
  \draw[->,line width=0.5mm] (1,3.5) -- (2.5,3.5);
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   271
  \draw (2.6,3.1) node[anchor=south west] {\tt jump to \code{\\x080483f4}};
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   272
\end{tikzpicture}
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   273
\end{center}
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   274
229
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   275
\noindent We need to fill this buffer over its limit of 8
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   276
characters so that it overwrites the stack pointer and then
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   277
also overwrites the return address. If, for example, we want
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   278
to jump to a specific address in memory, say,
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   279
\pcode{\\x080483f4} then we can fill the buffer with the data
227
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   280
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   281
\begin{center}
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   282
\code{char buf[8] = "AAAAAAAABBBB\\xf4\\x83\\x04\\x08";}
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   283
\end{center}
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   284
 
229
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   285
\noindent The first eight \pcode{A}s fill the buffer to the
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   286
rim; the next four \pcode{B}s overwrite the stack pointer
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   287
(with what data we overwrite this part is usually not
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   288
important); then comes the address we want to jump to. Notice
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   289
that we have to give the address in the reverse order. All
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   290
addresses on Intel CPUs need to be given in this way. Since
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   291
the string is enclosed in double quotes, the C convention is
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   292
that the string internally will automatically be terminated by
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   293
a zero-byte. If the programmer uses functions like
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   294
\pcode{strcpy} for filling the buffer \pcode{buf}, then we can
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   295
be sure it will overwrite the stack in this manner---since it
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   296
will copy everything up to the zero-byte. Notice that this
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   297
overwriting of the buffer only works since the newer item, the
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   298
buffer, is stored on the stack before the older items, like
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   299
return address and arguments. If it had be the other way
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   300
around, then such an overwriting by overflowing a local buffer
263
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   301
would just not work. Had the designers of C had just been able
230
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   302
to foresee what headaches their way of arranging the stack
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   303
caused in the time where computers are accessible from
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   304
everywhere. 
227
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   305
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   306
What the outcome of such an attack is can be illustrated with
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   307
the code shown in Figure~\ref{C2}. Under ``normal operation''
229
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   308
this program ask for a login-name and a password. Both of
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   309
which are stored in \code{char} buffers of length 8. The
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   310
function \pcode{match} tests whether two such buffers contain
230
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   311
the same content. If yes, then the function lets you ``in''
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   312
(by printing \pcode{Welcome}). If not, it denies access (by
229
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   313
printing \pcode{Wrong identity}). The vulnerable function is
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   314
\code{get_line} in Lines 11 to 19. This function does not take
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   315
any precautions about the buffer of 8 characters being filled
230
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   316
beyond its 8-character-limit. Let us suppose the login name
229
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   317
is \pcode{test}. Then the buffer overflow can be triggered
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   318
with a specially crafted string as password:
227
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   319
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   320
\begin{center}
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   321
\code{AAAAAAAABBBB\\x2c\\x85\\x04\\x08\\n}
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   322
\end{center}
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   323
229
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   324
\noindent The address at the end happens to be the one for the
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   325
function \pcode{welcome()}. This means even with this input
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   326
(where the login name and password clearly do not match) the
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   327
program will still print out \pcode{Welcome}. The only
230
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   328
information we need for this attack to work is to know where
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   329
the function \pcode{welcome()} starts in memory. This
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   330
information can be easily obtained by starting the program
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   331
inside the debugger and disassembling this function. 
227
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   332
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   333
\begin{lstlisting}[numbers=none,language={[x86masm]Assembler},
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   334
  morekeywords={movl,movw}]
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   335
$ gdb C2
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   336
GNU gdb (GDB) 7.2-ubuntu
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   337
(gdb) disassemble welcome
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   338
\end{lstlisting}
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   339
229
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   340
\noindent \pcode{C2} is the name of the program and
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   341
\pcode{gdb} is the name of the debugger. The output will be
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   342
something like this
227
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   343
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   344
\begin{lstlisting}[numbers=none,language={[x86masm]Assembler},
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   345
  morekeywords={movl,movw}]
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   346
0x0804852c <+0>:     push   %ebp
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   347
0x0804852d <+1>:     mov    %esp,%ebp
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   348
0x0804852f <+3>:     sub    $0x4,%esp
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   349
0x08048532 <+6>:     movl   $0x8048690,(%esp)
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   350
0x08048539 <+13>:    call   0x80483a4 <puts@plt>
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   351
0x0804853e <+18>:    movl   $0x0,(%esp)
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   352
0x08048545 <+25>:    call   0x80483b4 <exit@plt>
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   353
\end{lstlisting}
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   354
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   355
\noindent indicating that the function \pcode{welcome()}
229
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   356
starts at address \pcode{0x0804852c} (top address in the 
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   357
left column).
227
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   358
213
9c2fa54c7c2d updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 212
diff changeset
   359
\begin{figure}[p]
9c2fa54c7c2d updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 212
diff changeset
   360
\lstinputlisting[language=C]{../progs/C2.c}
230
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   361
\caption{A vulnerable login implementation.\label{C2}}
213
9c2fa54c7c2d updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 212
diff changeset
   362
\end{figure}
9c2fa54c7c2d updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 212
diff changeset
   363
227
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   364
This kind of attack was very popular with commercial programs
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   365
that needed a key to be unlocked. Historically, hackers first 
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   366
broke the rather weak encryption of these locking mechanisms.
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   367
After the encryption had been made stronger, hackers used
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   368
buffer overflow attacks as shown above to jump directly to
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   369
the part of the program that was intended to be only available
229
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   370
after the correct key was typed in. 
227
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   371
238
6ba55ba5b588 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 237
diff changeset
   372
\subsection*{Payloads}
227
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   373
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   374
Unfortunately, much more harm can be caused by buffer overflow
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   375
attacks. This is achieved by injecting code that will be run
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   376
once the return address is appropriately modified. Typically
230
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   377
the code that will be injected starts a shell. This gives the
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   378
attacker the ability to run programs on the target machine and
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   379
to have a good look around, provided the attacked process was not
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   380
already running as root.\footnote{In that case the attacker
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   381
would already congratulate him or herself to another
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   382
computer under full control.} In order to be send as part of
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   383
the string that is overflowing the buffer, we need the code to
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   384
be represented as a sequence of characters. For example
227
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   385
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   386
\lstinputlisting[language=C,numbers=none]{../progs/o1.c}
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   387
229
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   388
\noindent These characters represent the machine code for
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   389
opening a shell. It seems obtaining such a string requires
263
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   390
``higher-education'' in the architecture of the target system. But
229
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   391
it is actually relatively simple: First there are many such
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   392
string ready-made---just a quick Google query away. Second,
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   393
tools like the debugger can help us again. We can just write
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   394
the code we want in C, for example this would be the program
230
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   395
for starting a shell:
227
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   396
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   397
\lstinputlisting[language=C,numbers=none]{../progs/shell.c} 
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   398
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   399
\noindent Once compiled, we can use the debugger to obtain 
229
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   400
the machine code, or even the ready-made encoding as character
227
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   401
sequence. 
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   402
263
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   403
While easy, obtaining this string is not entirely trivial
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   404
using \pcode{gdb}. Remember the functions in C that copy or
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   405
fill buffers work such that they copy everything until the
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   406
zero byte is reached. Unfortunately the ``vanilla'' output
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   407
from the debugger for the shell-program above will contain
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   408
such zero bytes. So a post-processing phase is needed to
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   409
rewrite the machine code in a way that it does not contain any
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   410
zero bytes. This is like some works of literature that have
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   411
been written so that the letter e, for example, is avoided.
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   412
The technical term for such a literature work is
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   413
\emph{lipogram}.\footnote{The most famous example of a
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   414
lipogram is a 50,000 words novel titled Gadsby, see
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   415
\url{https://archive.org/details/Gadsby}, which avoids the 
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   416
letter `e' throughout.} For rewriting the
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   417
machine code, you might need to use clever tricks like
227
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   418
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   419
\begin{lstlisting}[numbers=none,language={[x86masm]Assembler}]
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   420
xor %eax, %eax
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   421
\end{lstlisting}
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   422
230
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   423
\noindent This instruction does not contain any zero-byte when
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   424
encoded as string, but produces a zero-byte on the stack when
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   425
run. 
227
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   426
230
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   427
Having removed the zero-bytes we can craft the string that
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   428
will be send to the target computer. This of course requires
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   429
that the buffer we are trying to attack can at least contain
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   430
the shellcode we want to run. But as you can see this is only
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   431
47 bytes, which is a very low bar to jump over. More
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   432
formidable is the choice of finding the right address to jump
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   433
to. The string is typically of the form
227
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   434
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   435
\begin{center}
230
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   436
  \begin{tikzpicture}[scale=0.6]
227
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   437
  \draw[line width=1mm] (-2, -1) rectangle (2,3);
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   438
  \draw[line width=1mm] (-2,1.9) -- (2,1.9);
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   439
  \draw (0,2.5) node {\large\tt shell code};
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   440
  \draw[line width=1mm,fill=black] (0.3, -1) rectangle (2,-0.7);
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   441
  \draw[->,line width=0.3mm] (1.05, -1) -- (1.05,-1.7) --
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   442
  (-3,-1.7) -- (-3, 3.7) -- (-1.9, 3.7) -- (-1.9, 3.1);
228
4f7c7997b68b updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 227
diff changeset
   443
  \draw (-2, 3) node[anchor=north east] {\LARGE \color{codegreen}{``}};
4f7c7997b68b updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 227
diff changeset
   444
  \draw ( 2,-0.9) node[anchor=west] {\LARGE\color{codegreen}{''}};
227
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   445
  \end{tikzpicture}
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   446
\end{center}
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   447
230
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   448
\noindent where we need to be very precise with the address
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   449
with which we will overwrite the buffer. It has to be
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   450
precisely the first byte of the shellcode. While this is easy
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   451
with the help of a debugger (as seen before), we typically
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   452
cannot run anything, including a debugger, on the machine yet
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   453
we target. And the address is very specific to the setup of
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   454
the target machine. One way of finding out what the right
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   455
address is is to try out one by one every possible
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   456
address until we get lucky. With the large memories available
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   457
today, however, the odds are long. And if we try out too many
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   458
possible candidates too quickly, we might be detected by the
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   459
system administrator of the target system.
228
4f7c7997b68b updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 227
diff changeset
   460
229
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   461
We can improve our odds considerably by following a clever 
228
4f7c7997b68b updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 227
diff changeset
   462
trick. Instead of adding the shellcode at the beginning of the
4f7c7997b68b updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 227
diff changeset
   463
string, we should add it at the end, just before we overflow 
229
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   464
the buffer, for example
228
4f7c7997b68b updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 227
diff changeset
   465
4f7c7997b68b updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 227
diff changeset
   466
\begin{center}
230
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   467
  \begin{tikzpicture}[scale=0.6]
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   468
  \draw[gray!50,fill=gray!50] (-2,0.3) rectangle (2,3);
228
4f7c7997b68b updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 227
diff changeset
   469
  \draw[line width=1mm] (-2, -1) rectangle (2,3);
230
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   470
  \draw[line width=1mm] (-2,0.3) -- (2,0.3);
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   471
  \draw[line width=1mm] (-2,-0.7) -- (2,-0.7);
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   472
  \draw (0,-0.2) node {\large\tt shell code};
228
4f7c7997b68b updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 227
diff changeset
   473
  \draw[line width=1mm,fill=black] (0.3, -1) rectangle (2,-0.7);
232
abc45724b267 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 230
diff changeset
   474
  \draw [line width=0.5,decoration={brace,amplitude=2mm},decorate] 
abc45724b267 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 230
diff changeset
   475
    (2.3,3) -- (2.3,0.3);
abc45724b267 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 230
diff changeset
   476
  \draw[line width=0.3mm] (1.05, -1) -- (1.05,-1.7) --
abc45724b267 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 230
diff changeset
   477
  (3,-1.7) -- (3,1.65) -- (2.6, 1.65);
228
4f7c7997b68b updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 227
diff changeset
   478
  \draw (-2, 3) node[anchor=north east] {\LARGE \color{codegreen}{``}};
4f7c7997b68b updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 227
diff changeset
   479
  \draw ( 2,-0.9) node[anchor=west] {\LARGE\color{codegreen}{''}};
4f7c7997b68b updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 227
diff changeset
   480
  \end{tikzpicture}
4f7c7997b68b updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 227
diff changeset
   481
\end{center}
227
7807863c4196 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 218
diff changeset
   482
238
6ba55ba5b588 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 237
diff changeset
   483
\noindent Then we can fill up the grey part of the string with
230
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   484
\pcode{NOP} operations. The code for this operation is
229
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   485
\code{\\0x90}. It is available on every architecture and its
230
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   486
purpose in a CPU is to do nothing apart from waiting a small
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   487
amount of time. If we now use an address that lets us jump to
238
6ba55ba5b588 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 237
diff changeset
   488
any address in the grey area we are done. The target machine
230
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   489
will execute these \pcode{NOP} operations until it reaches the
287
0b9a16ddd625 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 283
diff changeset
   490
shellcode. That is why this NOP-part is often called
0b9a16ddd625 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 283
diff changeset
   491
\emph{NOP-sledge}. A moment of thought should convince you
0b9a16ddd625 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 283
diff changeset
   492
that this trick can hugely improve our odds of finding the
0b9a16ddd625 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 283
diff changeset
   493
right address---depending on the size of the buffer, it might
0b9a16ddd625 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 283
diff changeset
   494
only take a few tries to get the shellcode to run. And then we
0b9a16ddd625 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 283
diff changeset
   495
are in. The code for such an attack is shown in
0b9a16ddd625 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 283
diff changeset
   496
Figure~\ref{C3}. It is directly taken from the original paper
0b9a16ddd625 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 283
diff changeset
   497
about ``Smashing the Stack for Fun and Profit'' (see pointer
0b9a16ddd625 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 283
diff changeset
   498
given at the end).
230
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   499
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   500
\begin{figure}[p]
232
abc45724b267 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 230
diff changeset
   501
\lstinputlisting[language=C]{../progs/C3.c}
abc45724b267 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 230
diff changeset
   502
\caption{Overwriting a buffer with a string containing a
abc45724b267 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 230
diff changeset
   503
payload.\label{C3}}
230
603cbd28e988 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 229
diff changeset
   504
\end{figure}
229
ea921d6a1819 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 228
diff changeset
   505
237
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   506
By the way you might have the question how do attackers find
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   507
out about vulnerable systems? Well, the automated version uses
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   508
\emph{fuzzers}, which throw randomly generated user input at
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   509
applications and observe the behaviour. If an application
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   510
seg-faults (throws a segmentation error) then this is a good
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   511
indication that a buffer overflow vulnerability can be
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   512
exploited.
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   513
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   514
232
abc45724b267 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 230
diff changeset
   515
\subsubsection*{Format String Attacks}
abc45724b267 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 230
diff changeset
   516
237
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   517
Another question might arise, where do we get all this
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   518
information about addresses necessary for mounting a buffer
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   519
overflow attack without having yet access to the system? The
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   520
answer are \emph{format string attacks}. While technically
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   521
they are programming mistakes (and they are pointed out as
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   522
warning by modern compilers), they can be easily made and
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   523
therefore an easy target. Let us look at the simplest version
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   524
of a vulnerable program.
232
abc45724b267 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 230
diff changeset
   525
abc45724b267 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 230
diff changeset
   526
\lstinputlisting[language=C]{../progs/C4.c}
abc45724b267 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 230
diff changeset
   527
233
5a5729358afc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 232
diff changeset
   528
\noindent The intention is to print out the first argument
5a5729358afc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 232
diff changeset
   529
given on the command line. The ``secret string'' is never to
5a5729358afc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 232
diff changeset
   530
be printed. The problem is that the C function \pcode{printf}
5a5729358afc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 232
diff changeset
   531
normally expects a format string---a schema that directs how a
5a5729358afc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 232
diff changeset
   532
string should be printed. This would be for example a proper
5a5729358afc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 232
diff changeset
   533
invocation of this function:
5a5729358afc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 232
diff changeset
   534
5a5729358afc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 232
diff changeset
   535
\begin{lstlisting}[numbers=none,language=C]
5a5729358afc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 232
diff changeset
   536
long n = 123456789;
5a5729358afc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 232
diff changeset
   537
printf("This is a long %lu!", n);
5a5729358afc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 232
diff changeset
   538
\end{lstlisting}
5a5729358afc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 232
diff changeset
   539
5a5729358afc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 232
diff changeset
   540
\noindent In the program above, instead, the format string
5a5729358afc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 232
diff changeset
   541
has been forgotten and only \pcode{argv[1]} is printed.
5a5729358afc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 232
diff changeset
   542
Now if we give on the command line a string such as
5a5729358afc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 232
diff changeset
   543
5a5729358afc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 232
diff changeset
   544
\begin{center}
5a5729358afc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 232
diff changeset
   545
\code{"foo \%s"}
5a5729358afc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 232
diff changeset
   546
\end{center}
5a5729358afc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 232
diff changeset
   547
5a5729358afc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 232
diff changeset
   548
\noindent then \pcode{printf} expects a string to 
5a5729358afc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 232
diff changeset
   549
follow. But there is no string that follows, and how
5a5729358afc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 232
diff changeset
   550
the argument resolution works in C will in fact print out 
5a5729358afc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 232
diff changeset
   551
the secret string! This can be handily exploited by 
5a5729358afc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 232
diff changeset
   552
using the format string \code{"\%x"}, which reads out the 
5a5729358afc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 232
diff changeset
   553
stack. So \code{"\%x....\%x"} will give you as much 
5a5729358afc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 232
diff changeset
   554
information from the stack as you need and over the 
5a5729358afc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 232
diff changeset
   555
Internet.
5a5729358afc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 232
diff changeset
   556
5a5729358afc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 232
diff changeset
   557
While the program above contains clearly a programming 
5a5729358afc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 232
diff changeset
   558
mistake (forgotten format string), things are not as simple
5a5729358afc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 232
diff changeset
   559
when the application reads data from the user and prompts
236
40efc28963af updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 233
diff changeset
   560
responses containing the user input. Consider the slight
40efc28963af updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 233
diff changeset
   561
variant of the program above
40efc28963af updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 233
diff changeset
   562
40efc28963af updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 233
diff changeset
   563
\lstinputlisting[language=C]{../progs/C5.c}
233
5a5729358afc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 232
diff changeset
   564
263
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   565
\noindent Here the programmer actually tried to take extra
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   566
care to not fall pray to a buffer overflow attack, but in the
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   567
process made the program susceptible to a format string
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   568
attack. Clearly the \pcode{printf} function in Line 7 contains
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   569
now an explicit format string, but because the commandline
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   570
input is copied using the function \pcode{snprintf} the result
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   571
will be the same---the string can be exploited by embedding
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   572
format strings into the user input. Here the programmer really
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   573
cannot be blamed (much) because by using \pcode{snprintf} he
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   574
or she tried to make sure only 10 characters get copied into
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   575
the local buffer---in this way avoiding the obvious buffer
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   576
overflow attack.
236
40efc28963af updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 233
diff changeset
   577
40efc28963af updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 233
diff changeset
   578
\subsubsection*{Caveats and Defences}
40efc28963af updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 233
diff changeset
   579
263
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   580
How can we defend against these attacks? Well, a reflex could
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   581
be to blame programmers. Precautions should be taken by them
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   582
so that buffers cannot been overfilled and format strings
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   583
should not be forgotten. This might actually be slightly
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   584
simpler nowadays since safe versions of the library functions
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   585
exist, which always specify the precise number of bytes that
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   586
should be copied. Compilers also nowadays provide warnings
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   587
when format strings are omitted. So proper education of
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   588
programmers is definitely a part of a defence against such
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   589
attacks. However, if we leave it at that, then we have the
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   590
mess we have today with new attacks discovered almost daily. 
237
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   591
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   592
There is actually a quite long record of publications
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   593
proposing defences against buffer overflow attacks. One method
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   594
is to declare the stack data as not executable. In this way it
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   595
is impossible to inject a payload as shown above which is then
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   596
executed once the stack is smashed. But this needs hardware
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   597
support which allows one to declare certain memory regions to
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   598
be not executable. Such a feature was not introduced before
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   599
the Intel 386, for example. Also if you have a JIT
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   600
(just-in-time) compiler it might be advantageous to have
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   601
the stack containing executable data. So it is definitely a 
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   602
trade-off.
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   603
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   604
Anyway attackers have found ways around this defence: they
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   605
developed \emph{return-to-lib-C} attacks. The idea is to not
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   606
inject code, but already use the code that is present at the
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   607
target computer. The lib-C library, for example, already
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   608
contains the code for spawning a shell. With
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   609
\emph{return-to-lib-C} one just has to find out where this
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   610
code is located. But attackers can make good guesses. In my
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   611
examples I took a shortcut and always made the stack
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   612
executable. 
232
abc45724b267 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 230
diff changeset
   613
237
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   614
Another defence is called \emph{stack canaries}. The advantage 
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   615
is that they can be automatically inserted into compiled code
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   616
and do not need any hardware support. Though they will make
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   617
your program run slightly slower. The idea behind \emph{stack
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   618
canaries} is to push a random number onto the stack just 
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   619
before local data is stored. For our very first function the
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   620
stack would with a \emph{stack canary} look as follows
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   621
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   622
\begin{center}
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   623
\begin{tikzpicture}[scale=0.65]
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   624
  %\draw[step=1cm] (-3,-1) grid (3,8);
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   625
  \draw[gray!20,fill=gray!20] (-1, 0) rectangle (1,-1);
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   626
  \draw[line width=1mm] (-1,-1.2) -- (-1,7.4);
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   627
  \draw[line width=1mm] ( 1,-1.2) -- ( 1,7.4);
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   628
  \draw (0,-1) node[anchor=south] {\tt main};
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   629
  \draw[line width=1mm] (-1,0) -- (1,0);
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   630
  \draw (0,0) node[anchor=south] {\tt arg$_3$=3};
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   631
  \draw[line width=1mm] (-1,1) -- (1,1);
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   632
  \draw (0,1) node[anchor=south] {\tt arg$_2$=2};
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   633
  \draw[line width=1mm] (-1,2) -- (1,2);
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   634
  \draw (0,2) node[anchor=south] {\tt arg$_1$=1};
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   635
  \draw[line width=1mm] (-1,3) -- (1,3);
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   636
  \draw (0,3.1) node[anchor=south] {\tt ret};
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   637
  \draw[line width=1mm] (-1,4) -- (1,4);
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   638
  \draw (0,4) node[anchor=south] {\small\tt last sp};
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   639
  \draw[line width=1mm] (-1,5) -- (1,5);
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   640
  \draw (0,5.1) node[anchor=south] {\tt\small\textcolor{red}{\textbf{random}}};
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   641
  \draw[line width=1mm] (-1,6) -- (1,6);
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   642
  \draw (0,6) node[anchor=south] {\tt buf};
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   643
  \draw[line width=1mm] (-1,7) -- (1,7);
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   644
  \end{tikzpicture}
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   645
\end{center}
206
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   646
237
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   647
\noindent The idea behind this random number is that when the
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   648
function finishes, it is checked that this random number is
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   649
still intact on the stack. If not, then a buffer overflow has
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   650
occurred. Although this is quite effective, but requires 
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   651
suitable support for generating random numbers. This is always
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   652
hard to get right and attackers are happy to exploit the 
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   653
resulting weaknesses.
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   654
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   655
Another defence is \emph{address space randomisation}. This
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   656
defence tries to make it harder for an attacker to guess 
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   657
addresses where code is stored. It turns out that addresses
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   658
where code is stored is rather predictable. Randomising the
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   659
place where programs are stored mitigates this problem 
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   660
somewhat.
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   661
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   662
As mentioned before, modern operating systems have these
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   663
defences enabled by default and make buffer overflow attacks
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   664
harder, but not impossible. Indeed, I as an amateur attacker
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   665
had to explicitly switch off these defences. I run my example
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   666
under an Ubuntu version ``Maverick Meerkat'' from October 
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   667
2010 and the gcc 4.4.5. I have not tried whether newer versions
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   668
would work as well. I tested all examples inside a virtual 
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   669
box\footnote{https://www.virtualbox.org} insulating my main 
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   670
system from any harm. When compiling the programs I called 
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   671
the compiler with the following options:
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   672
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   673
\begin{center}
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   674
\begin{tabular}{l@{\hspace{1mm}}l}
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   675
\pcode{/usr/bin/gcc} & \pcode{-ggdb -O0}\\
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   676
                     & \pcode{-fno-stack-protector}\\
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   677
                     & \pcode{-mpreferred-stack-boundary=2}\\
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   678
                     & \pcode{-z execstack} 
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   679
\end{tabular}
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   680
\end{center}
206
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   681
237
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   682
\noindent The first two are innocent as they instruct the
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   683
compiler to include debugging information and also produce
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   684
non-optimised code (the latter makes the output of the code a
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   685
bit more predictable). The third is important as it switches
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   686
of defences like the stack canaries. The fourth again makes it
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   687
a bit easier to read the code. The final option makes the
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   688
stack executable, thus the the example in Figure~\ref{C3}
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   689
works as intended. While this might be considered
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   690
cheating....since I explicitly switched off all defences, I
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   691
hope I was able convey that this is actually not too far
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   692
from realistic scenarios. I have shown you the classic version
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   693
of the buffer overflow attacks. Updated variants do exist.
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   694
Also one might argue buffer-overflow attacks have been
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   695
solved on computers (desktops or servers) but the computing
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   696
landscape of nowadays is wider than ever. The main problem
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   697
nowadays are embedded systems against which attacker can 
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   698
equally cause a lot of harm and which are much less defended
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   699
against. Anthony Bonkoski makes a similar argument in his 
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   700
security blog:
206
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   701
237
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   702
\begin{center}
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   703
\url{http://jabsoft.io/2013/09/25/are-buffer-overflows-solved-yet-a-historical-tale/}
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   704
\end{center}
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   705
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   706
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   707
There is one more rather effective defence against buffer 
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   708
overflow attacks: Why not using a safe language? Java at its 
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   709
inception was touted as a safe language because it hides
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   710
all explicit memory management from the user. This definitely
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   711
incurs a runtime penalty, but for bog-standard user-input
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   712
processing applications, speed is not of such an essence 
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   713
anymore. There are of course also many other programming 
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   714
languages that are safe, i.e.~immune to buffer overflow
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   715
attacks.
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   716
\bigskip
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   717
263
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   718
\subsubsection*{Further Reading}
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   719
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   720
If you want to know more about buffer overflow attacks, the
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   721
original Phrack article ``Smashing The Stack For Fun And
8a42736cce27 updated 5th handout
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 259
diff changeset
   722
Profit'' by Elias Levy (also known as Aleph One) is an
237
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   723
engaging read:
196
22f027da67ec updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 191
diff changeset
   724
22f027da67ec updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 191
diff changeset
   725
\begin{center}
22f027da67ec updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 191
diff changeset
   726
\url{http://phrack.org/issues/49/14.html}
22f027da67ec updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 191
diff changeset
   727
\end{center} 
206
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   728
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   729
\noindent This is an article from 1996 and some parts are
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   730
not up-to-date anymore. The article called
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   731
``Smashing the Stack in 2010''
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   732
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   733
\begin{center}
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   734
\url{http://www.mgraziano.info/docs/stsi2010.pdf}
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   735
\end{center}
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   736
0105257429f3 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 204
diff changeset
   737
\noindent updates, as the name says, most information to 2010.
240
4b2eeb0ddd81 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 238
diff changeset
   738
There is another Phrack article about return-into-lib(c) exploits 
4b2eeb0ddd81 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 238
diff changeset
   739
from 2012:
4b2eeb0ddd81 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 238
diff changeset
   740
4b2eeb0ddd81 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 238
diff changeset
   741
\begin{center}
4b2eeb0ddd81 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 238
diff changeset
   742
\url{http://phrack.org/issues/58/4.html}
4b2eeb0ddd81 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 238
diff changeset
   743
\end{center}
4b2eeb0ddd81 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 238
diff changeset
   744
4b2eeb0ddd81 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 238
diff changeset
   745
\noindent
4b2eeb0ddd81 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 238
diff changeset
   746
The main topic is about getting around the non-executability of stack
4b2eeb0ddd81 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 238
diff changeset
   747
data (in case it is protected).  This article gives some further
4b2eeb0ddd81 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 238
diff changeset
   748
pointers into the recent literature about buffer overflow attacks.
4b2eeb0ddd81 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 238
diff changeset
   749
4b2eeb0ddd81 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 238
diff changeset
   750
Buffer overflow attacks are not just restricted to Linux and 
4b2eeb0ddd81 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 238
diff changeset
   751
``normal'' computers. There is a book
4b2eeb0ddd81 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 238
diff changeset
   752
4b2eeb0ddd81 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 238
diff changeset
   753
\begin{quote}\rm 
4b2eeb0ddd81 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 238
diff changeset
   754
``iOS Hacker's Handbook'' by Miller et al, Wiley, 2012
4b2eeb0ddd81 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 238
diff changeset
   755
\end{quote}
4b2eeb0ddd81 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 238
diff changeset
   756
4b2eeb0ddd81 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 238
diff changeset
   757
\noindent
4b2eeb0ddd81 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 238
diff changeset
   758
which seem to describe buffer overflow attacks on iOS. A book from the
4b2eeb0ddd81 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 238
diff changeset
   759
same publisher exists also for Android (from 2014) which seem to also
4b2eeb0ddd81 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 238
diff changeset
   760
feature buffer overflow attacks. Alas I do not own copies of these
4b2eeb0ddd81 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 238
diff changeset
   761
books.
237
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   762
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   763
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   764
\subsubsection*{A Crash-Course for GDB}
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   765
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   766
If you want to try out the examples from KEATS it might be
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   767
helpful to know about the following commands of the GNU 
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   768
Debugger:
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   769
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   770
\begin{itemize}
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   771
\item \texttt{(l)ist n} -- lists the source file from line 
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   772
\texttt{n}, the number can be omitted 
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   773
\item \texttt{disassemble fun-name} -- show the assembly code 
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   774
of a function
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   775
\item \texttt{run args} -- starts the program, potential 
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   776
arguments can be given
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   777
\item \texttt{(b)reak line-number} -- sets break point
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   778
\item \texttt{(c)ontinue} -- continue execution until next 
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   779
breakpoint
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   780
\item \texttt{x/nxw addr} -- prints out \texttt{n} words starting 
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   781
from address \pcode{addr}, the address could be \code{$esp} 
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   782
for looking at the content of the stack
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   783
\item \texttt{x/nxb addr} -- prints out \texttt{n} bytes 
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   784
\end{itemize}
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   785
196
22f027da67ec updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 191
diff changeset
   786
 
237
b784175a69dc updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 236
diff changeset
   787
\bigskip\bigskip \noindent \end{document}
156
3b831b9dc616 added some initial handouts
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   788
3b831b9dc616 added some initial handouts
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   789
%%% Local Variables: 
3b831b9dc616 added some initial handouts
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   790
%%% mode: latex
3b831b9dc616 added some initial handouts
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   791
%%% TeX-master: t
3b831b9dc616 added some initial handouts
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   792
%%% End: