Trees | Indices | Help |
|
---|
|
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 79 """Java analysis package.""" 10 PATHS = [ 11 ("ProgramFiles", "Java", "jre*", "bin", "java.exe"), 12 ] 132415 java = self.get_path_glob("Java") 16 class_path = self.options.get("class") 17 18 if class_path: 19 args = ["-cp", path, class_path] 20 else: 21 args = ["-jar", path] 22 23 return self.execute(java, args=args, trigger="file:%s" % path)
Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Fri Nov 4 23:22:05 2016 | http://epydoc.sourceforge.net |