Trees | Indices | Help |
|
---|
|
1 # Copyright (C) 2010-2014 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 from lib.api.process import Process 79 """Shellcode (any x86 executable code) analysis package.""" 103012 p = Process() 13 dll = self.options.get("dll") 14 p.execute(path="bin/execsc.exe", args=path, suspended=True) 15 p.inject(dll) 16 p.resume() 17 18 return p.pid19 2224 if self.options.get("procmemdump", False): 25 for pid in self.pids: 26 p = Process(pid=pid) 27 p.dump_memory() 28 29 return True
Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Mon Apr 7 13:27:58 2014 | http://epydoc.sourceforge.net |