-
Notifications
You must be signed in to change notification settings - Fork 139
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
67 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -391,6 +391,71 @@ | |
|
||
\end{frame} | ||
|
||
\begin{frame} | ||
\frametitle{Supply Chain} | ||
|
||
Early in 2024, a vulnerability was discovered in the \texttt{xz} library. | ||
|
||
The library itself is used for data compression but some versions of \texttt{openssh} rely on it. | ||
|
||
This is a strong example of what's termed a ``supply chain attack''. | ||
|
||
\end{frame} | ||
|
||
\begin{frame} | ||
\frametitle{Supply Chain} | ||
|
||
Almost any modern piece of software is built in a compositional way. | ||
|
||
Compromising dependency $F$ means creating a vulnerability in $A$... | ||
|
||
|
||
If $A$ is \texttt{openssh} (\textit{secure} shell daemon) $\rightarrow$ BIG problem. | ||
|
||
\end{frame} | ||
|
||
\begin{frame}[fragile] | ||
\frametitle{How do you find it?} | ||
|
||
\begin{verbatim} | ||
before: | ||
[email protected]: Permission denied (publickey). | ||
before: | ||
real 0m0.299s | ||
user 0m0.202s | ||
sys 0m0.006s | ||
after: | ||
[email protected]: Permission denied (publickey). | ||
real 0m0.807s | ||
user 0m0.202s | ||
sys 0m0.006s | ||
\end{verbatim} | ||
|
||
\end{frame} | ||
|
||
\begin{frame} | ||
\frametitle{The Vulnerability in xz Explained} | ||
|
||
\begin{center} | ||
\includegraphics[width=0.52\textwidth]{images/xz.png} | ||
\end{center} | ||
|
||
\end{frame} | ||
|
||
\begin{frame} | ||
\frametitle{How do you defend against it?} | ||
|
||
There's obfuscation in the source code, so analysis is hard. | ||
|
||
This also had a social engineering component. | ||
|
||
How do you validate transitive dependencies? | ||
|
||
\end{frame} | ||
|
||
|
||
\end{document} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.