Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add SSTIC rump to README #16

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# yara-ttd - _The ultimate packer nemesis_

Use YARA rules on Time Travel Debugging traces
**Use YARA rules on Time Travel Debugging traces :hourglass_flowing_sand:**

**[Watch `yara-ttd` introduction during @atxr 's rump at SSTIC 2023 (french only :baguette_bread:)](https://static.sstic.org/rumps2023/SSTIC_2023-06-08_P12_RUMPS_17.mp4)**

1. [Demo](#demo)
2. [Motivations](#motivations)
Expand Down Expand Up @@ -73,12 +75,14 @@ For now, `yara-ttd` only supports Windows, because it needs to interact with the
First build the project:

```bash
mkdir build
cd build
git clone --recursive https://github.com/airbus-cert/yara-ttd.git
mkdir yara-ttd/build
cd yara-ttd/build
cmake ..
cmake --build .
```

The executable will be built in `./bin/Debug` or `./bin/Release`
Then, add the `TTDReplay.dll` and `TTDReplayCPU.dll` files in the same directory as the executable.
You will find these DLL files in `%LocalAppData%\Microsoft\WindowsApps\Microsoft.WinDbg_X\TTD`

Expand Down