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

Source Code for Module modules.packages.cpl

 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 CPL(Package):
9 """Control Panel Applet analysis package.""" 10 PATHS = [ 11 ("System32", "control.exe"), 12 ] 13
14 - def start(self, path):
15 control = self.get_path("control.exe") 16 return self.execute(control, args=[path])
17