Friday, November 13, 2015

Cuckoo Sandbox API with Apache for Cuckoo 2.0

As Cuckoo 2.0 is soon (hopefully) moving from dev to stable, there is one change that is need to be performed in order to keep on using the API via Apache.

The change is only in the in api.wsgi. For the Apache configuration see previous post on the same subject.

----------

import os
import sys

sys.path.append('<PATH>/cuckoo/utils')

from api import app as application

---------

All you need to do is to change the path to match your cuckoo installation

/Mikael