1
2
3
4
5
6 import os
7
8 _current_dir = os.path.abspath(os.path.dirname(__file__))
9 CUCKOO_ROOT = os.path.normpath(os.path.join(_current_dir, "..", "..", ".."))
10
11 CUCKOO_VERSION = "2.0-rc2"
12 CUCKOO_GUEST_PORT = 8000
13 CUCKOO_GUEST_INIT = 0x001
14 CUCKOO_GUEST_RUNNING = 0x002
15 CUCKOO_GUEST_COMPLETED = 0x003
16 CUCKOO_GUEST_FAILED = 0x004
17 GITHUB_URL = "https://github.com/cuckoosandbox/cuckoo"
18 ISSUES_PAGE_URL = "https://github.com/cuckoosandbox/cuckoo/issues"
19
20 LATEST_HTTPREPLAY = "0.1.17"
21