You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The issue Exported tags is not found in the report.
I check the code and add some print codes, finally found that the problem is in exported_tags.py:247
if (exportedisnotNoneandexported!="false") ortag_is_provider:
print("tag_is_provider:", tag_is_provider) #print tag_is_provider codeprint(self.min_sdk) #print min_sdk codeprint(self.target_sdk) #print target_sdk codeiftag_is_providerandself.min_sdk>16orself.target_sdk>16:
# provider is not vulnerable under these conditions, returnprint('provider is not vulnerable under these conditions, return') #my check codereturn
and the output is these:
tag_is_provider: False
29
29
provider is not vulnerable under these conditions, return
Please confirm the logic of this code is correct.
The text was updated successfully, but these errors were encountered:
When I scan a apk with such AndroidManifest.xml:
The issue Exported tags is not found in the report.
I check the code and add some print codes, finally found that the problem is in exported_tags.py:247
and the output is these:
Please confirm the logic of this code is correct.
The text was updated successfully, but these errors were encountered: