Skip to content

Tutorial

This tutorial show some usage Quokka Python API.

Run the code

Info

All the code snippets are valid Python / Bash snippet and may be run directly.

I suggest installing IPython for an interactive Python terminal with syntax highlighting and auto-completion

Step 1: Install quokka

Tip

It's best to install quokka in a virtualenv.

$ pip install pip install git+https://github.com/quarkslab/quokka.git

Step 2: Download the binaries for the tutorial

For this tutorial, we will use a simple CrackMe. You can download it here. If you don't have IDA, you will also need the exported file: here.

Check

Let's now check that quokka has been installed!

$ python -c "import quokka"

If the result is not the following (or any other errors), congrats!

Traceback (most recent call last):
  File "<string>", line 1, in <module>
ModuleNotFoundError: No module named 'quokka'