예제 #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)