Guardian is a tool that uses symbolic execution to validate whether an SGX enclave binary is orderly according to the definition in [1]—it also tries to detect typical enclave attack primitives in the process. It uses angr [3]—a symbolic execution engine that focus on usability—as a backend. For more details, please read our paper.
Guardian is licensed under the GNU Affero General Public License v3.0. If you have any queries about that, please reach out to us.
Guardian requires Python 3.6 or newer --- make sure you have pip for Python3 installed. It also relies on angr [3], which can be installed using pip as follows:
pip install angr
You can setup Guardian using pip or tox automation tool.
Run pip install .
in the main folder of the Guardian repository.
⚠️ If you getAttributeError: module 'enum' has no attribute 'IntFlag'
error, check if you have enum34 library installed, which is not compatibile with Python >3.4. You can uninstall it by callingpip uninstall -y enum34
. This step is not required if you use tox.
⚠️ If you want to run tests, you need pytest framework. You can either install it via pip or use tox, which installs pytest automatically. If you want to use pip, callpytest
in the main folder of the Guardian repository.
Guardian supports tox automation tool. You can install tox using pip by calling pip install tox
. Once you have tox installed, simply call tox
in the main folder of the Guardian repository. By default, it will run some tests under Python 3.6, 3.7, and 3.8. You can modify this behaviour by editing the file tox.ini
.
If you want to analyze your own enclave with Guardian, it need to be built with an appropriate Intel SGX SDK version. We recommend the version 2.12.
Guardian repository comes with the main tool, evaluation script referenced in [1], examples, and some tests.
It contains the content of the Guardian tool package that you install, either using tox or pip.
This folder contains SGX enclave binaries and a script we used in the vulnerability analysis in [1]. You should be able to reproduce our evaluation by running, from this folder:
python evaluation.py
In this folder, you can find several scripts: *.py
and *-after-fix.py
, together with some SGX enclave binaries. These scripts expose vulnerabilities we found during our analysis in [1] and demonstrate these issues have been resolved after reporting them to the maintainers. If you want to run these scripts using tox, you will have to modify tox.ini
.
⚠️ If you want to run these examples, make sure that your current working directory is the main folder of the Guardian repository.
You can run specific examples by executing, for instance, the following:
python examples/sgx-gmp-demo_2.6.py
Here, you can find a limited number of tests for our tool, together with some SGX enclave binaries they use. The purpose of these tests is to ascertain that violations types are correctly reported and that we do not detect any false-positives. If you set up Guardian using pip, you can run tests by calling pytest
in the main folder of the Guardian repository. Alternatively, tox
will run them automatically for you.
Guardian is a part of the research effort that we present in [1]; the paper is available here and its preprint here. If you want to refer to our work, please use the following BibTeX entry for citation.
@inproceedings{DBLP:conf/ccsw-ws/AntoninoW021,
author = {Pedro Antonino and
Wojciech Aleksander Woloszyn and
A. W. Roscoe},
editor = {Yinqian Zhang and
Marten van Dijk},
title = {Guardian: Symbolic Validation of Orderliness in {SGX} Enclaves},
booktitle = {CCSW@CCS '21: Proceedings of the 2021 on Cloud Computing Security
Workshop, Virtual Event, Republic of Korea, 15 November 2021},
pages = {111--123},
publisher = {{ACM}},
year = {2021},
url = {https://doi.org/10.1145/3474123.3486755},
doi = {10.1145/3474123.3486755},
timestamp = {Thu, 25 Nov 2021 14:33:02 +0100},
biburl = {https://dblp.org/rec/conf/ccsw-ws/AntoninoW021.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
[1] Antonino, Pedro and Wołoszyn, Wojciech Aleksander and Roscoe, Andrew William (2021). Guardian: symbolic execution of orderly SGX enclaves. Presented at CCSW@CCS '21 and available at https://doi.org/10.1145/3474123.3486755.
[2] Antonino, Pedro and Wołoszyn, Wojciech Aleksander and Roscoe, Andrew William (2021). Guardian: symbolic execution of orderly SGX enclaves. Preprint. Available at: https://arxiv.org/abs/2105.05962.
[3] Shoshitaishvili, Yan and Wang, Ruoyu and Salls, Christopher and Stephens, Nick and Polino, Mario and Dutcher, Audrey and Grosen, John and Feng, Siji and Hauser, Christophe and Kruegel, Christopher and Vigna, Giovanni (2016). IEEE Symposium on Security and Privacy.