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

Source Code for Module modules.packages.exe

 1  # Copyright (C) 2010-2015 Cuckoo Foundation. 
 2  # This file is part of Cuckoo Sandbox - http://www.cuckoosandbox.org 
 3  # See the file 'docs/LICENSE' for copying permission. 
 4   
 5  from lib.common.abstracts import Package 
 6   
7 -class Exe(Package):
8 """EXE analysis package.""" 9
10 - def start(self, path):
11 args = self.options.get("arguments") 12 return self.execute(path, args)
13