Package lib :: Package cuckoo :: Package common :: Module constants
[hide private]
[frames] | no frames]

Source Code for Module lib.cuckoo.common.constants

 1  # Copyright (C) 2010-2013 Claudio Guarnieri. 
 2  # Copyright (C) 2014-2016 Cuckoo Foundation. 
 3  # This file is part of Cuckoo Sandbox - http://www.cuckoosandbox.org 
 4  # See the file 'docs/LICENSE' for copying permission. 
 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