Skip to content

Get all APK package strings from .dex strings table and .so libraries.

Notifications You must be signed in to change notification settings

v-y-archive/apkstrings

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

apkstrings

Get all APK package strings from .dex strings table and .so libraries.

Usage

from apkstrings import get_package_strings


try:
    apk_path = input("Please specify APK:")
    strings = get_package_strings(apk_path, analyze_dex=True, analyze_so=True)
    for s in strings:
        if "something" in s:
            print(s)
except APKParseException:
    exit("Wrong APK file.")

About

Get all APK package strings from .dex strings table and .so libraries.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages