如何使用 androguard 或 aapt 从.apk中提取过滤器意图



我需要从APK文件中提取过滤器意图功能,我可以使用开源库androguard提取权限和硬件组件,我使用其APK类提取功能,但对于过滤器意图,我有一个错误。

*************
    filter_intent_accepted = apk.get_intent_filters()
TypeError: get_intent_filters() missing 2 required positional arguments: 'itemtype' and 'name'
Process finished with exit code 1

我还检查了他们发表评论的功能。我尝试了所有可能的论点,但没有得到任何结果。
函数为:

def get_intent_filters(self, itemtype, name):
        """
        Find intent filters for a given item and name.
        Intent filter are attached to activities, services or receivers.
        You can search for the intent filters of such items and get a dictionary of all
        attached actions and intent categories.
        :param itemtype: the type of parent item to look for, e.g. `activity`,  `service` or `receiver`
        :param name: the `android:name` of the parent item, e.g. activity name
        :return: a dictionary with the keys `action` and `category` containing the `android:name` of those items
        """
        d = {"action": [], "category": []}
        for i in self.xml:
            # TODO: this can probably be solved using a single xpath
            for item in self.xml[i].findall(".//" + itemtype):
                if self._format_value(item.get(NS_ANDROID + "name")) == name:
                    for sitem in item.findall(".//intent-filter"):
                        for ssitem in sitem.findall("action"):
                            if ssitem.get(NS_ANDROID + "name") not in d["action"]:
                                d["action"].append(ssitem.get(NS_ANDROID + "name"))
                        for ssitem in sitem.findall("category"):
                            if ssitem.get(NS_ANDROID + "name") not in d["category"]:
                                d["category"].append(ssitem.get(NS_ANDROID + "name"))
        if not d["action"]:
            del d["action"]
        if not d["category"]:
            del d["category"]
        return d

我应该将哪些参数传递给函数?我已经尝试了它的定义示例,但我无法弄清楚。提前谢谢。

def printIntentFilters(itemtype, name):
    print ('t' + name + ':')
    for action,intent_name in apk.get_intent_filters(itemtype, name).items():
                print ('tt' + action + ':')
                for intent in intent_name:
                        print ('ttt' + intent)
    return
# Intent filters 
print('nServices and their intent-filters:')
services = apk.get_services()
serviceString = 'service'
for service in services:
    printIntentFilters(serviceString, service)
print('nReceivers and their intent-filters:')
receivers = apk.get_receivers()
receiverString = 'receiver'
for receiver in receivers:
    printIntentFilters(receiverString, receiver)

最新更新