示例#1
0
 def start(self, path):
     self.package, self.activity, self.service = get_package_activity_name(
         path)
     install_sample(path)
     if self.activity != "":
         execute_sample(self.package, self.activity)
     else:
         execute_service(self.package, self.service)
示例#2
0
文件: apk.py 项目: sunacha3/cuckoo
 def start(self, path):
     install_sample(path)
     execute_sample(self.package, self.activity)
示例#3
0
 def start(self, path):
     install_sample(path)
     if self.activity != "":
         execute_sample(self.package, self.activity)
     else:
         execute_service(self.package, self.service)
示例#4
0
文件: apk.py 项目: AntiRootkit/cuckoo
 def start(self, path):
     install_sample(path)
     execute_sample(self.package, self.activity)
示例#5
0
 def start(self, path):
     self.package, self.activity = get_package_activity_name(path)
     install_sample(path)
     execute_sample(self.package, self.activity)
示例#6
0
 def start(self, path):
     self.package, self.activity=get_package_activity_name(path)
     install_sample(path)
     execute_sample(self.package,self.activity)