コード例 #1
0
ファイル: ApkFileSearch.py プロジェクト: ehrenb/Stumble
    def search(self):
        """iterate through files in the APK and apply search_strings over files that are of type file_types
            if no search strings specified, consider all files a match
            if no file_types specified, apply search strings to all files
            if no search strings and no file types, then return all files
        """
        apk_files = self.apk.get_files_types()
        search_results = []
        for file_path, file_type in apk_files.iteritems():
            file_ext = os.path.splitext(os.path.basename(file_path))[1]

            #if file type filter on, and this file is not that type, then skip
            if self.file_types and not any(
                    interested_type in file_type.lower()
                    or interested_type in file_ext
                    for interested_type in self.file_types):
                continue

            search_result = None
            file_data = self.apk.get_file(file_path)

            if self.search_strings:
                for pattern in self.patterns:
                    match = pattern.search(file_data)
                    if match:
                        search_result = {
                            'file_path': file_path,
                            'file_type': file_type,
                            'search_string': pattern.pattern
                        }
                        search_results.append(search_result)
            else:
                search_result = {
                    'file_path': file_path,
                    'file_type': file_type,
                    'search_string': None
                }
                search_results.append(search_result)

            #write individual files
            if search_result and self.save_matched_files_dir:
                #save original structure to avoid duplicate filename collisions
                save_file_path = os.path.join(self.save_matched_files_dir,
                                              file_path)
                if not os.path.exists(os.path.dirname(save_file_path)):
                    os.makedirs(os.path.dirname(save_file_path))

                with open(save_file_path, 'wb') as f:
                    f.write(file_data)

                if 'Android binary XML' in file_type:
                    with open(save_file_path, 'r+') as axml_f:
                        decoded_axml = AXMLPrinter(axml_f.read()).buff
                        axml_f.seek(0)
                        axml_f.write(decoded_axml)
                        axml_f.truncate()

        return search_results
コード例 #2
0
    def get_manifest_exported_components(self):
        '''
        Get the package names which are exported.
        
        Therefore the manifest looks like:
        "
            <activity android:name=".SQLDemo"
              android:exported="true">
        "
        
        Returns
        -------
        set<str>
            Set of package names.
        '''
        pns = set()
        for i in self.zip.namelist():
            if i == "AndroidManifest.xml":
                ap = AXMLPrinter(self.zip.read(i))
                dom = minidom.parseString(ap.get_buff())
                for component_type in (MANIFEST_ACTIVITY, MANIFEST_PROVIDER,
                                       MANIFEST_RECEIVER, MANIFEST_SERVICE):
                    component_tags = dom.getElementsByTagName(component_type)
                    # check that tag is available
                    for component_tag in component_tags:
                        component_attributes = component_tag.attributes
                        component_name = component_attributes.getNamedItemNS(
                            MANIFEST_NS, "name").nodeValue

                        exported = False
                        exported_tag = component_attributes.getNamedItemNS(
                            MANIFEST_NS, "exported")
                        if exported_tag:
                            exported = exported_tag.nodeValue
                            if exported.lower() == "true":
                                pns.add(component_name)
        return pns
コード例 #3
0
ファイル: Apk.py プロジェクト: faheemfayyaz/androlyze
 def get_manifest_exported_components(self):
     '''
     Get the package names which are exported.
     
     Therefore the manifest looks like:
     "
         <activity android:name=".SQLDemo"
           android:exported="true">
     "
     
     Returns
     -------
     set<str>
         Set of package names.
     '''
     pns = set()
     for i in self.zip.namelist():
         if i == "AndroidManifest.xml":
             ap = AXMLPrinter(self.zip.read(i))
             dom = minidom.parseString(ap.get_buff())
             for component_type in (MANIFEST_ACTIVITY, MANIFEST_PROVIDER, MANIFEST_RECEIVER, MANIFEST_SERVICE):
                 component_tags = dom.getElementsByTagName(component_type)
                 # check that tag is available
                 for component_tag in component_tags:
                     component_attributes = component_tag.attributes
                     component_name = component_attributes.getNamedItemNS(MANIFEST_NS, "name").nodeValue 
                     
                     exported = False
                     exported_tag = component_attributes.getNamedItemNS(MANIFEST_NS, "exported")
                     if exported_tag:
                         exported = exported_tag.nodeValue
                         if exported.lower() == "true":
                             pns.add(component_name)
     return pns
             
             
コード例 #4
0
ファイル: get_field_type.py プロジェクト: jamella/SMVHunter
    def get_xml(self, fil):
        ap = AXMLPrinter(self.a.get_file(fil))
        buff = minidom.parseString(ap.get_buff())

        return buff
コード例 #5
0
    def get_xml(self, fil):
        ap = AXMLPrinter(self.a.get_file(fil))
        buff = minidom.parseString(ap.get_buff())

        return buff
コード例 #6
0
 def get_xml_from_file(self, xml_file):
     ap = AXMLPrinter(self.apk.get_file(xml_file))
     return minidom.parseString(ap.get_buff())