Package modules :: Package packages :: Module bin
[hide private]
[frames] | no frames]

Source Code for Module modules.packages.bin

 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  from lib.common.abstracts import Package 
 7   
8 -class Shellcode(Package):
9 """Shellcode (any x86 executable code) analysis package.""" 10
11 - def start(self, path):
12 return self.execute("bin/execsc.exe", args=[path])
13