AndroidFridaManager 1.7.7__py3-none-any.whl → 1.7.9__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- AndroidFridaManager/FridaManager.py +22 -19
- AndroidFridaManager/about.py +1 -1
- {AndroidFridaManager-1.7.7.dist-info → AndroidFridaManager-1.7.9.dist-info}/METADATA +1 -1
- AndroidFridaManager-1.7.9.dist-info/RECORD +11 -0
- AndroidFridaManager-1.7.7.dist-info/RECORD +0 -11
- {AndroidFridaManager-1.7.7.dist-info → AndroidFridaManager-1.7.9.dist-info}/LICENSE +0 -0
- {AndroidFridaManager-1.7.7.dist-info → AndroidFridaManager-1.7.9.dist-info}/WHEEL +0 -0
- {AndroidFridaManager-1.7.7.dist-info → AndroidFridaManager-1.7.9.dist-info}/entry_points.txt +0 -0
- {AndroidFridaManager-1.7.7.dist-info → AndroidFridaManager-1.7.9.dist-info}/top_level.txt +0 -0
|
@@ -50,26 +50,28 @@ class FridaManager():
|
|
|
50
50
|
def _setup_logging(self):
|
|
51
51
|
"""
|
|
52
52
|
Setup logging for the current instance of FridaManager
|
|
53
|
-
|
|
54
53
|
"""
|
|
55
54
|
logger = logging.getLogger()
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
'
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
55
|
+
|
|
56
|
+
# Check if the logger already has handlers (i.e., if another project has set it up)
|
|
57
|
+
if not logger.handlers:
|
|
58
|
+
logger.setLevel(logging.INFO)
|
|
59
|
+
color_formatter = ColoredFormatter(
|
|
60
|
+
"%(log_color)s[%(asctime)s] [%(levelname)-4s]%(reset)s - %(message)s",
|
|
61
|
+
datefmt='%d-%m-%y %H:%M:%S',
|
|
62
|
+
reset=True,
|
|
63
|
+
log_colors={
|
|
64
|
+
'DEBUG': 'cyan',
|
|
65
|
+
'INFO': 'green',
|
|
66
|
+
'WARNING': 'bold_yellow',
|
|
67
|
+
'ERROR': 'bold_red',
|
|
68
|
+
'CRITICAL': 'bold_red',
|
|
69
|
+
},
|
|
70
|
+
secondary_log_colors={},
|
|
71
|
+
style='%')
|
|
72
|
+
logging_handler = logging.StreamHandler()
|
|
73
|
+
logging_handler.setFormatter(color_formatter)
|
|
74
|
+
logger.addHandler(logging_handler)
|
|
73
75
|
|
|
74
76
|
|
|
75
77
|
|
|
@@ -191,6 +193,7 @@ class FridaManager():
|
|
|
191
193
|
|
|
192
194
|
def get_frida_server_for_android_url(self, version):
|
|
193
195
|
arch = self._get_android_device_arch()
|
|
196
|
+
|
|
194
197
|
if self.verbose:
|
|
195
198
|
self.logger.info(f"[*] Android architecture: {arch}")
|
|
196
199
|
arch_str = "x86"
|
|
@@ -202,7 +205,7 @@ class FridaManager():
|
|
|
202
205
|
elif arch == "ia32":
|
|
203
206
|
arch_str = "x86"
|
|
204
207
|
elif arch == "x64":
|
|
205
|
-
arch_str
|
|
208
|
+
arch_str = "x86_64"
|
|
206
209
|
else:
|
|
207
210
|
arch_str = "x86"
|
|
208
211
|
|
AndroidFridaManager/about.py
CHANGED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
AndroidFridaManager/FridaManager.py,sha256=jxoqFGUwkBTYee7DEYAxo_-qk06DCQa8U9i9OZxAc5M,13381
|
|
2
|
+
AndroidFridaManager/__init__.py,sha256=T6AKtrGSLQ9M5bJoWDQcsRTJbSEbksdgrx3AAAdozRI,171
|
|
3
|
+
AndroidFridaManager/about.py,sha256=_5RG2s3Y8tV5jnC9LpY8sCOQuLsL8NxR2vl90rx4c3s,97
|
|
4
|
+
AndroidFridaManager/job.py,sha256=NWgU7RzheNfEazL8CcmAIoVwylTdEDNbTPqmiAY7ZhY,3264
|
|
5
|
+
AndroidFridaManager/job_manager.py,sha256=f4ByEiAU8I6JUz7eNrdk8hnaD9VUJW3D-dtX79eEu68,12164
|
|
6
|
+
AndroidFridaManager-1.7.9.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
7
|
+
AndroidFridaManager-1.7.9.dist-info/METADATA,sha256=AEvdZVQXypMKZfhsBEmBPVHFS-44BEEJp5BJMqUHWRM,4633
|
|
8
|
+
AndroidFridaManager-1.7.9.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
9
|
+
AndroidFridaManager-1.7.9.dist-info/entry_points.txt,sha256=GmNngu2fDNCxUcquFRegBa7GWknPKG1jsM4lvWeyKnY,64
|
|
10
|
+
AndroidFridaManager-1.7.9.dist-info/top_level.txt,sha256=oH2lVMSRlghmt-_tVrOEUqvY462P9hd5Ktgp5-1qF3o,20
|
|
11
|
+
AndroidFridaManager-1.7.9.dist-info/RECORD,,
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
AndroidFridaManager/FridaManager.py,sha256=KFzUhyYKdeGYv6XdjuVUzTR0MLkpW5JFxU-e9hrESNI,13181
|
|
2
|
-
AndroidFridaManager/__init__.py,sha256=T6AKtrGSLQ9M5bJoWDQcsRTJbSEbksdgrx3AAAdozRI,171
|
|
3
|
-
AndroidFridaManager/about.py,sha256=q6FFXTcj_M7qvni0lySC42iL4jMDUXLiSCyvOHZQmpc,97
|
|
4
|
-
AndroidFridaManager/job.py,sha256=NWgU7RzheNfEazL8CcmAIoVwylTdEDNbTPqmiAY7ZhY,3264
|
|
5
|
-
AndroidFridaManager/job_manager.py,sha256=f4ByEiAU8I6JUz7eNrdk8hnaD9VUJW3D-dtX79eEu68,12164
|
|
6
|
-
AndroidFridaManager-1.7.7.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
7
|
-
AndroidFridaManager-1.7.7.dist-info/METADATA,sha256=4trq7uKLeQQYlDSSpzpg7aRSZqwTpKvCBzPPlbmmSSE,4633
|
|
8
|
-
AndroidFridaManager-1.7.7.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
9
|
-
AndroidFridaManager-1.7.7.dist-info/entry_points.txt,sha256=GmNngu2fDNCxUcquFRegBa7GWknPKG1jsM4lvWeyKnY,64
|
|
10
|
-
AndroidFridaManager-1.7.7.dist-info/top_level.txt,sha256=oH2lVMSRlghmt-_tVrOEUqvY462P9hd5Ktgp5-1qF3o,20
|
|
11
|
-
AndroidFridaManager-1.7.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{AndroidFridaManager-1.7.7.dist-info → AndroidFridaManager-1.7.9.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|