https://github.com/widberg/tracetaint
x64dbg plugin for tracing taint
https://github.com/widberg/tracetaint
Last synced: 8 months ago
JSON representation
x64dbg plugin for tracing taint
- Host: GitHub
- URL: https://github.com/widberg/tracetaint
- Owner: widberg
- Created: 2023-02-17T01:24:48.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-02-25T17:15:30.000Z (over 3 years ago)
- Last Synced: 2025-02-23T04:44:18.486Z (over 1 year ago)
- Language: C++
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TraceTaint
An x32dbg plugin to follow data through a program.
## Getting Started
### Prerequisites
* Git
* CMake
* x32dbg
* Any Windows toolchain
### Checkout
```sh
git clone https://github.com/widberg/tracetaint.git
```
### Build
Use the `x86 Native Tools Command Prompt for VS 2022` environment while generating and building the
project.
```sh
cmake -S . -B build -G Ninja -DX64DBG_DIR="/x64dbg" -DCMAKE_INSTALL_PREFIX="/x64dbg/release/x32/plugins"
cmake --build build
```