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

Source Code for Module modules.packages.ie

 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 IE(Package):
8 """Internet Explorer analysis package.""" 9 PATHS = [ 10 ("ProgramFiles", "Internet Explorer", "iexplore.exe"), 11 ] 12
13 - def start(self, url):
14 iexplore = self.get_path("Internet Explorer") 15 return self.execute(iexplore, "\"%s\"" % url)
16