Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix permission analysis in the radare2 core for APKs with UTF-8 encoding #602

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 9 additions & 2 deletions quark/core/axmlreader/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ def __init__(self, file_path, core_library="rizin", structure_path=None):
)

self._stringCount = string_pool_header[1]["value"]
self._isUtf8Used = (string_pool_header[3]["value"] & (1 << 8)) != 0
stringStart = string_pool_header[4]["value"]

self._core.cmd(f"f string_pool_header @ 0x8 ")
Expand Down Expand Up @@ -284,11 +285,17 @@ def axml_size(self):
def get_string(self, index):
if index < 0 or index >= self._stringCount:
return None
if self._isUtf8Used:
stringFormat = "z"
stringKey = "value"
else:
stringFormat = "Z"
stringKey = "string"

return self._core.cmdj(
f"pfj Z @ string_pool_data + `pfv n4 "
f"pfj {stringFormat} @ string_pool_data + `pfv n4 "
f"@ string_pool_index+ {index}*4` + 2"
)[0]["string"]
)[0][stringKey]

def get_attributes(self, chunk: ResChunkHeader) -> List[ResValue]:
"""Get the attributes of a resource chunk
Expand Down
12 changes: 12 additions & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,13 @@
"/raw/master/malware-samples/Ahmyth.apk"
),
"fileName": "Ahmyth.apk"
},
{
"sourceUrl": (
"https://github.com/quark-engine/apk-samples"
"/raw/master/vulnerable-samples/pivaa.apk"
),
"fileName": "pivaa.apk"
}
]

Expand Down Expand Up @@ -62,3 +69,8 @@ def SAMPLE_PATH_13667(tmp_path_factory: pytest.TempPathFactory) -> str:
@pytest.fixture(scope="session")
def SAMPLE_PATH_Ahmyth(tmp_path_factory: pytest.TempPathFactory) -> str:
return downloadSample(tmp_path_factory, SAMPLES[2])


@pytest.fixture(scope="session")
def SAMPLE_PATH_pivaa(tmp_path_factory: pytest.TempPathFactory) -> str:
return downloadSample(tmp_path_factory, SAMPLES[3])
13 changes: 11 additions & 2 deletions tests/core/test_axmlreader.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
from quark.core.axmlreader import AxmlReader, ResValue



@pytest.fixture(
scope="function",
params=(("radare2"), ("rizin")),
Expand All @@ -35,6 +34,11 @@ def MANIFEST_PATH_14d9f(SAMPLE_PATH_14d9f):
return extractManifest(SAMPLE_PATH_14d9f)


@pytest.fixture(scope="session")
def MANIFEST_PATH_pivaa(SAMPLE_PATH_pivaa):
return extractManifest(SAMPLE_PATH_pivaa)


class TestAxmlReader:
@staticmethod
def testIter(core_library, MANIFEST_PATH_14d9f) -> None:
Expand All @@ -57,10 +61,15 @@ def testAxmlSize(core_library, MANIFEST_PATH_14d9f):
assert axmlReader.axml_size == 7676

@staticmethod
def testGetString(core_library, MANIFEST_PATH_14d9f):
def testGetStringFromUtf16Apk(core_library, MANIFEST_PATH_14d9f):
axmlReader = AxmlReader(MANIFEST_PATH_14d9f, core_library)
assert axmlReader.get_string(13) == "manifest"

@staticmethod
def testGetStringFromUtf8Apk(core_library, MANIFEST_PATH_pivaa):
axmlReader = AxmlReader(MANIFEST_PATH_pivaa, core_library)
assert axmlReader.get_string(58) == "manifest"

@staticmethod
def testGetAttributes(core_library, MANIFEST_PATH_14d9f):
axmlReader = AxmlReader(MANIFEST_PATH_14d9f, core_library)
Expand Down