mirror of
https://github.com/mvt-project/mvt.git
synced 2026-02-25 06:35:17 +00:00
Compare commits
32 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a5ae729b65 | ||
|
|
86a0772eb2 | ||
|
|
7d0be9db4f | ||
|
|
4e120b2640 | ||
|
|
dbe9e5db9b | ||
|
|
0b00398729 | ||
|
|
87034d2c7a | ||
|
|
595a2f6536 | ||
|
|
8ead44a31e | ||
|
|
5c19d02a73 | ||
|
|
14ebc9ee4e | ||
|
|
de53cc07f8 | ||
|
|
22e066fc4a | ||
|
|
242052b8ec | ||
|
|
1df61b5bbf | ||
|
|
b691de2cc0 | ||
|
|
10915f250c | ||
|
|
c60cef4009 | ||
|
|
dda798df8e | ||
|
|
ffe6ad2014 | ||
|
|
a125b20fc5 | ||
|
|
49108e67e2 | ||
|
|
883b450601 | ||
|
|
ce813568ff | ||
|
|
93303f181a | ||
|
|
bee453a090 | ||
|
|
42106aa4d6 | ||
|
|
95076c8f71 | ||
|
|
c9ac12f336 | ||
|
|
486e3e7e9b | ||
|
|
be1fc3bd8b | ||
|
|
4757cff262 |
11
.github/dependabot.yml
vendored
Normal file
11
.github/dependabot.yml
vendored
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# To get started with Dependabot version updates, you'll need to specify which
|
||||||
|
# package ecosystems to update and where the package manifests are located.
|
||||||
|
# Please see the documentation for all configuration options:
|
||||||
|
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
|
||||||
|
|
||||||
|
version: 2
|
||||||
|
updates:
|
||||||
|
- package-ecosystem: "pip" # See documentation for possible values
|
||||||
|
directory: "/" # Location of package manifests
|
||||||
|
schedule:
|
||||||
|
interval: "weekly"
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
mkdocs==1.6.1
|
mkdocs==1.6.1
|
||||||
mkdocs-autorefs==1.2.0
|
mkdocs-autorefs==1.4.2
|
||||||
mkdocs-material==9.5.42
|
mkdocs-material==9.6.16
|
||||||
mkdocs-material-extensions==1.3.1
|
mkdocs-material-extensions==1.3.1
|
||||||
mkdocstrings==0.23.0
|
mkdocstrings==0.30.0
|
||||||
@@ -20,22 +20,23 @@ classifiers = [
|
|||||||
]
|
]
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"click==8.2.1",
|
"click==8.2.1",
|
||||||
"rich==14.0.0",
|
"rich==14.1.0",
|
||||||
"tld==0.13.1",
|
"tld==0.13.1",
|
||||||
"requests==2.32.2",
|
"requests==2.32.4",
|
||||||
"simplejson==3.20.1",
|
"simplejson==3.20.1",
|
||||||
"packaging==25.0",
|
"packaging==25.0",
|
||||||
"appdirs==1.4.4",
|
"appdirs==1.4.4",
|
||||||
"iOSbackup==0.9.925",
|
"iOSbackup==0.9.925",
|
||||||
"adb-shell[usb]==0.4.4",
|
"adb-shell[usb]==0.4.4",
|
||||||
"libusb1==3.3.1",
|
"libusb1==3.3.1",
|
||||||
"cryptography==45.0.3",
|
"cryptography==45.0.6",
|
||||||
"PyYAML>=6.0.2",
|
"PyYAML>=6.0.2",
|
||||||
"pyahocorasick==2.1.0",
|
"pyahocorasick==2.2.0",
|
||||||
"betterproto==1.2.5",
|
"betterproto==1.2.5",
|
||||||
"pydantic==2.11.5",
|
"pydantic==2.11.7",
|
||||||
"pydantic-settings==2.9.1",
|
"pydantic-settings==2.10.1",
|
||||||
"NSKeyedUnArchiver==1.5",
|
"NSKeyedUnArchiver==1.5.2",
|
||||||
|
"python-dateutil==2.9.0.post0",
|
||||||
]
|
]
|
||||||
requires-python = ">= 3.10"
|
requires-python = ">= 3.10"
|
||||||
|
|
||||||
|
|||||||
@@ -21,12 +21,22 @@ class DumpsysADBArtifact(AndroidArtifact):
|
|||||||
stack = [res]
|
stack = [res]
|
||||||
cur_indent = 0
|
cur_indent = 0
|
||||||
in_multiline = False
|
in_multiline = False
|
||||||
for line in dump_data.strip(b"\n").split(b"\n"):
|
# Normalize line endings to handle both Unix (\n) and Windows (\r\n)
|
||||||
|
normalized_data = dump_data.replace(b"\r\n", b"\n").replace(b"\r", b"\n")
|
||||||
|
for line in normalized_data.strip(b"\n").split(b"\n"):
|
||||||
|
# Skip completely empty lines
|
||||||
|
if not line.strip():
|
||||||
|
continue
|
||||||
|
|
||||||
# Track the level of indentation
|
# Track the level of indentation
|
||||||
indent = len(line) - len(line.lstrip())
|
indent = len(line) - len(line.lstrip())
|
||||||
if indent < cur_indent:
|
if indent < cur_indent:
|
||||||
# If the current line is less indented than the previous one, back out
|
# If the current line is less indented than the previous one, back out
|
||||||
stack.pop()
|
while len(stack) > 1 and indent < cur_indent:
|
||||||
|
stack.pop()
|
||||||
|
# Check if we were in multiline mode and need to exit it
|
||||||
|
if in_multiline and not isinstance(stack[-1], list):
|
||||||
|
in_multiline = False
|
||||||
cur_indent = indent
|
cur_indent = indent
|
||||||
else:
|
else:
|
||||||
cur_indent = indent
|
cur_indent = indent
|
||||||
@@ -38,12 +48,30 @@ class DumpsysADBArtifact(AndroidArtifact):
|
|||||||
|
|
||||||
# Annoyingly, some values are multiline and don't have a key on each line
|
# Annoyingly, some values are multiline and don't have a key on each line
|
||||||
if in_multiline:
|
if in_multiline:
|
||||||
if key == "":
|
if key == "" and len(vals) < 2:
|
||||||
# If the line is empty, it's the terminator for the multiline value
|
# If the line is empty, it's the terminator for the multiline value
|
||||||
in_multiline = False
|
in_multiline = False
|
||||||
stack.pop()
|
stack.pop()
|
||||||
|
current_dict = stack[-1]
|
||||||
|
elif len(vals) >= 2 and (key in self.multiline_fields or key == "}" or vals[1] == b"{"):
|
||||||
|
# If we encounter a new field while in multiline mode, exit multiline mode
|
||||||
|
# and process this line as a new field
|
||||||
|
in_multiline = False
|
||||||
|
stack.pop()
|
||||||
|
current_dict = stack[-1]
|
||||||
|
# Don't continue here - let the line be processed as a new field
|
||||||
else:
|
else:
|
||||||
current_dict.append(line.lstrip())
|
# When in multiline mode, the top of stack should be a list
|
||||||
|
if isinstance(stack[-1], list):
|
||||||
|
stack[-1].append(line.lstrip())
|
||||||
|
else:
|
||||||
|
# Something went wrong with the stack, exit multiline mode
|
||||||
|
in_multiline = False
|
||||||
|
current_dict = stack[-1]
|
||||||
|
continue
|
||||||
|
|
||||||
|
# Skip lines that don't have a value after '='
|
||||||
|
if len(vals) < 2:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if key == "}":
|
if key == "}":
|
||||||
@@ -133,7 +161,16 @@ class DumpsysADBArtifact(AndroidArtifact):
|
|||||||
|
|
||||||
# TODO: Parse AdbDebuggingManager line in output.
|
# TODO: Parse AdbDebuggingManager line in output.
|
||||||
start_of_json = content.find(b"\n{") + 2
|
start_of_json = content.find(b"\n{") + 2
|
||||||
end_of_json = content.rfind(b"}\n") - 2
|
|
||||||
|
# Handle both Unix (\n) and Windows (\r\n) line endings
|
||||||
|
end_of_json = content.rfind(b"}\n")
|
||||||
|
if end_of_json == -1:
|
||||||
|
end_of_json = content.rfind(b"}\r\n")
|
||||||
|
if end_of_json == -1:
|
||||||
|
self.log.error("Unable to find end of JSON block in dumpsys output")
|
||||||
|
return
|
||||||
|
|
||||||
|
end_of_json -= 2
|
||||||
json_content = content[start_of_json:end_of_json].rstrip()
|
json_content = content[start_of_json:end_of_json].rstrip()
|
||||||
|
|
||||||
parsed = self.indented_dump_parser(json_content)
|
parsed = self.indented_dump_parser(json_content)
|
||||||
|
|||||||
@@ -51,11 +51,6 @@ ANDROID_DANGEROUS_SETTINGS = [
|
|||||||
"key": "send_action_app_error",
|
"key": "send_action_app_error",
|
||||||
"safe_value": "1",
|
"safe_value": "1",
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"description": "enabled installation of non Google Play apps",
|
|
||||||
"key": "install_non_market_apps",
|
|
||||||
"safe_value": "0",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"description": "enabled accessibility services",
|
"description": "enabled accessibility services",
|
||||||
"key": "accessibility_enabled",
|
"key": "accessibility_enabled",
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ from typing import List, Optional, Union
|
|||||||
|
|
||||||
import pydantic
|
import pydantic
|
||||||
import betterproto
|
import betterproto
|
||||||
|
from dateutil import parser
|
||||||
|
|
||||||
from mvt.common.utils import convert_datetime_to_iso
|
from mvt.common.utils import convert_datetime_to_iso
|
||||||
from mvt.android.parsers.proto.tombstone import Tombstone
|
from mvt.android.parsers.proto.tombstone import Tombstone
|
||||||
@@ -254,12 +255,7 @@ class TombstoneCrashArtifact(AndroidArtifact):
|
|||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def _parse_timestamp_string(timestamp: str) -> str:
|
def _parse_timestamp_string(timestamp: str) -> str:
|
||||||
timestamp_date, timezone = timestamp.split("+")
|
timestamp_parsed = parser.parse(timestamp)
|
||||||
# Truncate microseconds before parsing
|
|
||||||
timestamp_without_micro = timestamp_date.split(".")[0] + "+" + timezone
|
|
||||||
timestamp_parsed = datetime.datetime.strptime(
|
|
||||||
timestamp_without_micro, "%Y-%m-%d %H:%M:%S%z"
|
|
||||||
)
|
|
||||||
|
|
||||||
# HACK: Swap the local timestamp to UTC, so keep the original time and avoid timezone conversion.
|
# HACK: Swap the local timestamp to UTC, so keep the original time and avoid timezone conversion.
|
||||||
local_timestamp = timestamp_parsed.replace(tzinfo=datetime.timezone.utc)
|
local_timestamp = timestamp_parsed.replace(tzinfo=datetime.timezone.utc)
|
||||||
|
|||||||
@@ -112,10 +112,18 @@ class Files(AndroidQFModule):
|
|||||||
|
|
||||||
def run(self) -> None:
|
def run(self) -> None:
|
||||||
if timezone := self._get_device_timezone():
|
if timezone := self._get_device_timezone():
|
||||||
device_timezone = zoneinfo.ZoneInfo(timezone)
|
try:
|
||||||
|
device_timezone = zoneinfo.ZoneInfo(timezone)
|
||||||
|
except zoneinfo.ZoneInfoNotFoundError:
|
||||||
|
self.log.warning("Device timezone '%s' not found, using UTC", timezone)
|
||||||
|
device_timezone = datetime.timezone.utc
|
||||||
else:
|
else:
|
||||||
self.log.warning("Unable to determine device timezone, using UTC")
|
self.log.warning("Unable to determine device timezone, using UTC")
|
||||||
device_timezone = zoneinfo.ZoneInfo("UTC")
|
try:
|
||||||
|
device_timezone = zoneinfo.ZoneInfo("UTC")
|
||||||
|
except zoneinfo.ZoneInfoNotFoundError:
|
||||||
|
# Fallback for Windows systems where zoneinfo might not have UTC
|
||||||
|
device_timezone = datetime.timezone.utc
|
||||||
|
|
||||||
for file in self._get_files_by_pattern("*/files.json"):
|
for file in self._get_files_by_pattern("*/files.json"):
|
||||||
rawdata = self._get_file_content(file).decode("utf-8", errors="ignore")
|
rawdata = self._get_file_content(file).decode("utf-8", errors="ignore")
|
||||||
|
|||||||
@@ -231,6 +231,7 @@ def parse_sms_file(data):
|
|||||||
entry.pop("mms_body")
|
entry.pop("mms_body")
|
||||||
|
|
||||||
body = entry.get("body", None)
|
body = entry.get("body", None)
|
||||||
|
message_links = None
|
||||||
if body:
|
if body:
|
||||||
message_links = check_for_links(entry["body"])
|
message_links = check_for_links(entry["body"])
|
||||||
|
|
||||||
|
|||||||
@@ -654,7 +654,8 @@ class Indicators:
|
|||||||
return None
|
return None
|
||||||
|
|
||||||
for ioc in self.get_iocs("processes"):
|
for ioc in self.get_iocs("processes"):
|
||||||
parts = file_path.split("/")
|
# Use os-agnostic path splitting to handle both Windows (\) and Unix (/) separators
|
||||||
|
parts = file_path.replace("\\", "/").split("/")
|
||||||
if ioc["value"] in parts:
|
if ioc["value"] in parts:
|
||||||
self.log.warning(
|
self.log.warning(
|
||||||
"Found known suspicious process name mentioned in file at "
|
"Found known suspicious process name mentioned in file at "
|
||||||
|
|||||||
@@ -1131,5 +1131,9 @@
|
|||||||
{
|
{
|
||||||
"version": "18.5",
|
"version": "18.5",
|
||||||
"build": "22F76"
|
"build": "22F76"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"version": "18.6",
|
||||||
|
"build": "22G86"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -43,6 +43,8 @@ class GlobalPreferences(IOSExtraction):
|
|||||||
self.log.warning("Lockdown mode enabled")
|
self.log.warning("Lockdown mode enabled")
|
||||||
else:
|
else:
|
||||||
self.log.warning("Lockdown mode disabled")
|
self.log.warning("Lockdown mode disabled")
|
||||||
|
return
|
||||||
|
self.log.warning("Lockdown mode disabled")
|
||||||
|
|
||||||
def process_file(self, file_path: str) -> None:
|
def process_file(self, file_path: str) -> None:
|
||||||
with open(file_path, "rb") as handle:
|
with open(file_path, "rb") as handle:
|
||||||
|
|||||||
@@ -95,14 +95,17 @@ class SafariBrowserState(IOSExtraction):
|
|||||||
)
|
)
|
||||||
except sqlite3.OperationalError:
|
except sqlite3.OperationalError:
|
||||||
# Old version iOS <12 likely
|
# Old version iOS <12 likely
|
||||||
cur.execute(
|
try:
|
||||||
|
cur.execute(
|
||||||
|
"""
|
||||||
|
SELECT
|
||||||
|
title, url, user_visible_url, last_viewed_time, session_data
|
||||||
|
FROM tabs
|
||||||
|
ORDER BY last_viewed_time;
|
||||||
"""
|
"""
|
||||||
SELECT
|
)
|
||||||
title, url, user_visible_url, last_viewed_time, session_data
|
except sqlite3.OperationalError as e:
|
||||||
FROM tabs
|
self.log.error(f"Error executing query: {e}")
|
||||||
ORDER BY last_viewed_time;
|
|
||||||
"""
|
|
||||||
)
|
|
||||||
|
|
||||||
for row in cur:
|
for row in cur:
|
||||||
session_entries = []
|
session_entries = []
|
||||||
|
|||||||
@@ -116,13 +116,16 @@ class TCC(IOSExtraction):
|
|||||||
)
|
)
|
||||||
db_version = "v2"
|
db_version = "v2"
|
||||||
except sqlite3.OperationalError:
|
except sqlite3.OperationalError:
|
||||||
cur.execute(
|
try:
|
||||||
"""SELECT
|
cur.execute(
|
||||||
service, client, client_type, allowed,
|
"""SELECT
|
||||||
prompt_count
|
service, client, client_type, allowed,
|
||||||
FROM access;"""
|
prompt_count
|
||||||
)
|
FROM access;"""
|
||||||
db_version = "v1"
|
)
|
||||||
|
db_version = "v1"
|
||||||
|
except sqlite3.OperationalError as e:
|
||||||
|
self.log.error(f"Error parsing TCC database: {e}")
|
||||||
|
|
||||||
for row in cur:
|
for row in cur:
|
||||||
service = row[0]
|
service = row[0]
|
||||||
|
|||||||
@@ -64,4 +64,4 @@ class TestTombstoneCrashArtifact:
|
|||||||
# We often don't know the time offset for a log entry and so can't convert everything to UTC.
|
# We often don't know the time offset for a log entry and so can't convert everything to UTC.
|
||||||
# MVT should output the local time only:
|
# MVT should output the local time only:
|
||||||
# So original 2023-04-12 12:32:40.518290770+0200 -> 2023-04-12 12:32:40.000000
|
# So original 2023-04-12 12:32:40.518290770+0200 -> 2023-04-12 12:32:40.000000
|
||||||
assert tombstone_result.get("timestamp") == "2023-04-12 12:32:40.000000"
|
assert tombstone_result.get("timestamp") == "2023-04-12 12:32:40.518290"
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ from pathlib import Path
|
|||||||
from mvt.android.modules.bugreport.appops import Appops
|
from mvt.android.modules.bugreport.appops import Appops
|
||||||
from mvt.android.modules.bugreport.getprop import Getprop
|
from mvt.android.modules.bugreport.getprop import Getprop
|
||||||
from mvt.android.modules.bugreport.packages import Packages
|
from mvt.android.modules.bugreport.packages import Packages
|
||||||
|
from mvt.android.modules.bugreport.tombstones import Tombstones
|
||||||
from mvt.common.module import run_module
|
from mvt.common.module import run_module
|
||||||
|
|
||||||
from ..utils import get_artifact_folder
|
from ..utils import get_artifact_folder
|
||||||
@@ -54,3 +55,8 @@ class TestBugreportAnalysis:
|
|||||||
def test_getprop_module(self):
|
def test_getprop_module(self):
|
||||||
m = self.launch_bug_report_module(Getprop)
|
m = self.launch_bug_report_module(Getprop)
|
||||||
assert len(m.results) == 0
|
assert len(m.results) == 0
|
||||||
|
|
||||||
|
def test_tombstones_modules(self):
|
||||||
|
m = self.launch_bug_report_module(Tombstones)
|
||||||
|
assert len(m.results) == 2
|
||||||
|
assert m.results[1]["pid"] == 3559
|
||||||
|
|||||||
@@ -0,0 +1,27 @@
|
|||||||
|
*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
|
||||||
|
Build fingerprint: 'samsung/a10eea/a10:10/.190711.020/A105:user/release-keys'
|
||||||
|
Revision: '5'
|
||||||
|
ABI: 'arm'
|
||||||
|
Timestamp: 2021-09-29 17:43:49+0200
|
||||||
|
pid: 9850, tid: 9893, name: UsbFfs-worker >>> /system/bin/adbd <<<
|
||||||
|
uid: 2000
|
||||||
|
signal 6 (SIGABRT), code -1 (SI_QUEUE), fault addr --------
|
||||||
|
Abort message: 'Check failed: payload.size() <= bytes_left (payload.size()=99, bytes_left=51) '
|
||||||
|
r0 00000000 r1 000026a5 r2 00000006 r3 f11fad98
|
||||||
|
r4 f11fadac r5 f11fad90 r6 0000267a r7 0000016b
|
||||||
|
r8 f11fada8 r9 f11fad98 r10 f11fadc8 r11 f11fadb8
|
||||||
|
ip 000026a5 sp f11fad68 lr f20c23b7 pc f20c23ca
|
||||||
|
|
||||||
|
backtrace:
|
||||||
|
#00 pc 000603ca /apex/com.android.runtime/lib/bionic/libc.so (abort+166) (BuildId: 320fbdc2a1289fadd7dacae7f2eb77a3)
|
||||||
|
#01 pc 00007e23 /system/lib/libbase.so (android::base::DefaultAborter(char const*)+6) (BuildId: a28585ee446ea17e3e6fcf9c907fff2a)
|
||||||
|
#02 pc 0000855f /system/lib/libbase.so (android::base::LogMessage::~LogMessage()+406) (BuildId: a28585ee446ea17e3e6fcf9c907fff2a)
|
||||||
|
#03 pc 000309cf /system/lib/libadbd.so (UsbFfsConnection::ProcessRead(IoBlock*)+814) (BuildId: 3645b175977ae210c156a57b25dfa599)
|
||||||
|
#04 pc 00030459 /system/lib/libadbd.so (UsbFfsConnection::HandleRead(TransferId, long long)+84) (BuildId: 3645b175977ae210c156a57b25dfa599)
|
||||||
|
#05 pc 00030349 /system/lib/libadbd.so (UsbFfsConnection::ReadEvents()+92) (BuildId: 3645b175977ae210c156a57b25dfa599)
|
||||||
|
#06 pc 00030169 /system/lib/libadbd.so (_ZZN16UsbFfsConnection11StartWorkerEvENKUlvE_clEv+504) (BuildId: 3645b175977ae210c156a57b25dfa599)
|
||||||
|
#07 pc 0002ff53 /system/lib/libadbd.so (_ZNSt3__114__thread_proxyINS_5tupleIJNS_10unique_ptrINS_15__thread_structENS_14default_deleteIS3_EEEEZN16UsbFfsConnection11StartWorkerEvEUlvE_EEEEEPvSA_+26) (BuildId: 3645b175977ae210c156a57b25dfa599)
|
||||||
|
#08 pc 000a75b3 /apex/com.android.runtime/lib/bionic/libc.so (__pthread_start(void*)+20) (BuildId: 320fbdc2a1289fadd7dacae7f2eb77a3)
|
||||||
|
#09 pc 00061b33 /apex/com.android.runtime/lib/bionic/libc.so (__start_thread+30) (BuildId: 320fbdc2a1289fadd7dacae7f2eb77a3)
|
||||||
|
|
||||||
|
|
||||||
@@ -0,0 +1,38 @@
|
|||||||
|
*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
|
||||||
|
Build fingerprint: 'samsung/a10eea/a10:11/RP1A.200720.012/A105:user/release-keys'
|
||||||
|
Revision: '5'
|
||||||
|
ABI: 'arm'
|
||||||
|
Timestamp: 2023-08-21 23:28:59-0400
|
||||||
|
pid: 3559, tid: 3568, name: tzts_daemon >>> /vendor/bin/tzts_daemon <<<
|
||||||
|
uid: 1000
|
||||||
|
signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0xe8b4d14c
|
||||||
|
r0 e8b4d14c r1 e8b4d14c r2 0000002b r3 00000004
|
||||||
|
r4 00000000 r5 e8b4d14c r6 00000000 r7 00000000
|
||||||
|
r8 e7ef78b0 r9 0000002b r10 e7ef7dad r11 e7ef7400
|
||||||
|
ip 00000000 sp e7ef7208 lr e89f4b01 pc e89c273a
|
||||||
|
|
||||||
|
backtrace:
|
||||||
|
#00 pc 0005f73a /apex/com.android.runtime/lib/bionic/libc.so (strlen_a15+54) (BuildId: fef5b751123147ea65bf3f4f798c9518)
|
||||||
|
#01 pc 00091afd /apex/com.android.runtime/lib/bionic/libc.so (__vfprintf+3364) (BuildId: fef5b751123147ea65bf3f4f798c9518)
|
||||||
|
#02 pc 000a68e5 /apex/com.android.runtime/lib/bionic/libc.so (vsnprintf+152) (BuildId: fef5b751123147ea65bf3f4f798c9518)
|
||||||
|
#03 pc 000051cf /system/lib/liblog.so (__android_log_vprint+74) (BuildId: 3fcead474cd0ecbdafb529ff176b0d13)
|
||||||
|
#04 pc 000012e8 /vendor/bin/tzts_daemon
|
||||||
|
|
||||||
|
memory near r0:
|
||||||
|
e8b4d12c -------- -------- -------- -------- ................
|
||||||
|
e8b4d13c -------- -------- -------- -------- ................
|
||||||
|
e8b4d14c -------- -------- -------- -------- ................
|
||||||
|
e8b4d15c -------- -------- -------- -------- ................
|
||||||
|
e8b4d16c -------- -------- -------- -------- ................
|
||||||
|
e8b4d17c -------- -------- -------- -------- ................
|
||||||
|
e8b4d18c -------- -------- -------- -------- ................
|
||||||
|
e8b4d19c -------- -------- -------- -------- ................
|
||||||
|
e8b4d1ac -------- -------- -------- -------- ................
|
||||||
|
e8b4d1bc -------- -------- -------- -------- ................
|
||||||
|
e8b4d1cc -------- -------- -------- -------- ................
|
||||||
|
e8b4d1dc -------- -------- -------- -------- ................
|
||||||
|
e8b4d1ec -------- -------- -------- -------- ................
|
||||||
|
e8b4d1fc -------- -------- -------- -------- ................
|
||||||
|
e8b4d20c -------- -------- -------- -------- ................
|
||||||
|
e8b4d21c -------- -------- -------- -------- ................
|
||||||
|
|
||||||
Reference in New Issue
Block a user