https://github.com/quarkslab/tritondse
Triton-based DSE library with loading and exploration capabilities (and more!)
https://github.com/quarkslab/tritondse
Last synced: 5 months ago
JSON representation
Triton-based DSE library with loading and exploration capabilities (and more!)
- Host: GitHub
- URL: https://github.com/quarkslab/tritondse
- Owner: quarkslab
- License: apache-2.0
- Created: 2023-03-23T07:54:55.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-09-09T13:27:36.000Z (10 months ago)
- Last Synced: 2025-09-09T16:35:09.127Z (10 months ago)
- Language: Python
- Homepage: https://quarkslab.github.io/tritondse
- Size: 7.62 MB
- Stars: 127
- Watchers: 11
- Forks: 9
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- Awesome-Embedded-Systems-Vulnerability-Research - TritonDSE Library
README
# TritonDSE
TritonDSE is a Python library providing exploration capabilities to Triton
and some refinement easing its usage. This library is primarily designed
to perform pure emulation symbolic execution even though it can also be
applied under different settings. It works by performing an elementary
loading of the program and starts exploring from the entrypoint. The whole
exploration can be instrumented using a hook mechanism enabling to obtain
a handle on various events.
At the moment solely ELF and Linux are supported. But further development
can lead to more platform. Furthermore it provides facilities on the C
runtime and it has not been tested on other types of programs.
[Documentation](https://quarkslab.github.io/tritondse)
---
TritonDSE goal is to provide higher-level primitives than [Triton](https://triton-library.github.io/).
Triton is a low-level framework where one have to provide manually all instructions to be executed
symbolically. As such, TritonDSE provides the following features:
* Loader mechanism (based on [LIEF](https://lief-project.github.io/), [cle](https://github.com/angr/cle) or custom ones)
* Memory segmentation
* Coverage strategies (block, edge, path)
* Pointer coverage
* Automatic input injection on stdin, argv
* Input replay with QBDI
* input scheduling *(customizable)*
* sanitizer mechanism
* basic heap allocator
* some libc symbolic stubs
---
# Quick start
* [Installation](#installation)
* [Documentation](#documentation)
## Installation
```bash
pip install tritondse
```
The pip package will install all dependencies.
## Documentation
A complete documentation on how to use TritonDSE is available on
[Github pages](https://quarkslab.github.io/tritondse).
---
## External Contributors
* Jonathan Salwan
* Richard Abou Chaaya
[*All contributions**](https://github.com/quarkslab/tritondse/graphs/contributors)