frida-fusion 0.1.5__tar.gz → 0.1.6__tar.gz
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.
Potentially problematic release.
This version of frida-fusion might be problematic. Click here for more details.
- frida_fusion-0.1.6/LICENSE +25 -0
- {frida-fusion-0.1.5 → frida_fusion-0.1.6}/PKG-INFO +8 -3
- {frida-fusion-0.1.5 → frida_fusion-0.1.6}/frida_fusion/__meta__.py +2 -2
- {frida-fusion-0.1.5 → frida_fusion-0.1.6}/frida_fusion/fusion.py +13 -0
- {frida-fusion-0.1.5 → frida_fusion-0.1.6}/frida_fusion.egg-info/PKG-INFO +8 -3
- {frida-fusion-0.1.5 → frida_fusion-0.1.6}/frida_fusion.egg-info/SOURCES.txt +1 -0
- {frida-fusion-0.1.5 → frida_fusion-0.1.6}/pyproject.toml +2 -3
- {frida-fusion-0.1.5 → frida_fusion-0.1.6}/README.md +0 -0
- {frida-fusion-0.1.5 → frida_fusion-0.1.6}/frida_fusion/__init__.py +0 -0
- {frida-fusion-0.1.5 → frida_fusion-0.1.6}/frida_fusion/__main__.py +0 -0
- {frida-fusion-0.1.5 → frida_fusion-0.1.6}/frida_fusion/args.py +0 -0
- {frida-fusion-0.1.5 → frida_fusion-0.1.6}/frida_fusion/config.py +0 -0
- {frida-fusion-0.1.5 → frida_fusion-0.1.6}/frida_fusion/libs/__init__.py +0 -0
- {frida-fusion-0.1.5 → frida_fusion-0.1.6}/frida_fusion/libs/color.py +0 -0
- {frida-fusion-0.1.5 → frida_fusion-0.1.6}/frida_fusion/libs/database.py +0 -0
- {frida-fusion-0.1.5 → frida_fusion-0.1.6}/frida_fusion/libs/helpers.js +0 -0
- {frida-fusion-0.1.5 → frida_fusion-0.1.6}/frida_fusion/libs/logger.py +0 -0
- {frida-fusion-0.1.5 → frida_fusion-0.1.6}/frida_fusion/module.py +0 -0
- {frida-fusion-0.1.5 → frida_fusion-0.1.6}/frida_fusion/modules/__init__.py +0 -0
- {frida-fusion-0.1.5 → frida_fusion-0.1.6}/frida_fusion/modules/crypto/__init__.py +0 -0
- {frida-fusion-0.1.5 → frida_fusion-0.1.6}/frida_fusion/modules/crypto/crypto.js +0 -0
- {frida-fusion-0.1.5 → frida_fusion-0.1.6}/frida_fusion/modules/crypto/crypto.py +0 -0
- {frida-fusion-0.1.5 → frida_fusion-0.1.6}/frida_fusion/modules/tls_unpinning/__init__.py +0 -0
- {frida-fusion-0.1.5 → frida_fusion-0.1.6}/frida_fusion/modules/tls_unpinning/frida_multiple_unpinning.py +0 -0
- {frida-fusion-0.1.5 → frida_fusion-0.1.6}/frida_fusion.egg-info/dependency_links.txt +0 -0
- {frida-fusion-0.1.5 → frida_fusion-0.1.6}/frida_fusion.egg-info/entry_points.txt +0 -0
- {frida-fusion-0.1.5 → frida_fusion-0.1.6}/frida_fusion.egg-info/requires.txt +0 -0
- {frida-fusion-0.1.5 → frida_fusion-0.1.6}/frida_fusion.egg-info/top_level.txt +0 -0
- {frida-fusion-0.1.5 → frida_fusion-0.1.6}/setup.cfg +0 -0
- {frida-fusion-0.1.5 → frida_fusion-0.1.6}/setup.py +0 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
BSD 2-Clause License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2022, Helvio Junior
|
|
4
|
+
All rights reserved.
|
|
5
|
+
|
|
6
|
+
Redistribution and use in source and binary forms, with or without
|
|
7
|
+
modification, are permitted provided that the following conditions are met:
|
|
8
|
+
|
|
9
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
10
|
+
list of conditions and the following disclaimer.
|
|
11
|
+
|
|
12
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
13
|
+
this list of conditions and the following disclaimer in the documentation
|
|
14
|
+
and/or other materials provided with the distribution.
|
|
15
|
+
|
|
16
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
17
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
18
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
19
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
20
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
21
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
22
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
23
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
24
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
25
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: frida-fusion
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.6
|
|
4
4
|
Summary: Hook your mobile tests with Frida
|
|
5
5
|
Author-email: "Helvio Junior (M4v3r1ck)" <helvio_junior@hotmail.com>
|
|
6
6
|
Maintainer-email: "Helvio Junior (M4v3r1ck)" <helvio_junior@hotmail.com>
|
|
@@ -12,7 +12,6 @@ Keywords: Frida Fusion,Frida,Frida Scripts,development,red team
|
|
|
12
12
|
Classifier: Development Status :: 4 - Beta
|
|
13
13
|
Classifier: Environment :: Console
|
|
14
14
|
Classifier: Intended Audience :: System Administrators
|
|
15
|
-
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
16
15
|
Classifier: Natural Language :: English
|
|
17
16
|
Classifier: Operating System :: OS Independent
|
|
18
17
|
Classifier: Programming Language :: Python
|
|
@@ -27,6 +26,12 @@ Classifier: Topic :: Security
|
|
|
27
26
|
Classifier: Topic :: Utilities
|
|
28
27
|
Requires-Python: <4,>=3.9
|
|
29
28
|
Description-Content-Type: text/markdown
|
|
29
|
+
License-File: LICENSE
|
|
30
|
+
Requires-Dist: colorama
|
|
31
|
+
Requires-Dist: requests>=2.23.0
|
|
32
|
+
Requires-Dist: frida>=15.1.17
|
|
33
|
+
Requires-Dist: frida-tools>=10.8.0
|
|
34
|
+
Dynamic: license-file
|
|
30
35
|
|
|
31
36
|
# Frida Fusion
|
|
32
37
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
__version__ = '0.1.
|
|
1
|
+
__version__ = '0.1.6'
|
|
2
2
|
__title__ = "Frida Fusion"
|
|
3
3
|
__description__ = "📱 frida-fusion - runtime mobile exploration"
|
|
4
4
|
__url__ = "https://github.com/helviojunior/frida-fusion"
|
|
5
|
-
__build__ =
|
|
5
|
+
__build__ = 0x9f83cd2
|
|
6
6
|
__author__ = "Helvio Junior (M4v3r1ck)"
|
|
7
7
|
__author_email__ = "helvio_junior@hotmail.com"
|
|
8
8
|
__license__ = "GPL-3.0"
|
|
@@ -261,6 +261,19 @@ class Fusion(object):
|
|
|
261
261
|
jData = jData.get("payload", {})
|
|
262
262
|
script_location = self.translate_location(location)
|
|
263
263
|
|
|
264
|
+
if isinstance(jData, str):
|
|
265
|
+
msg = jData
|
|
266
|
+
try:
|
|
267
|
+
msg = base64.b64encode(jData.encode("UTF-8"))
|
|
268
|
+
except Exception:
|
|
269
|
+
pass
|
|
270
|
+
|
|
271
|
+
jData = {
|
|
272
|
+
"type": "message",
|
|
273
|
+
"level": "I",
|
|
274
|
+
"message": msg
|
|
275
|
+
}
|
|
276
|
+
|
|
264
277
|
if script_location.file_name == "<unknown>":
|
|
265
278
|
script_location.file_name = script_name
|
|
266
279
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: frida-fusion
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.6
|
|
4
4
|
Summary: Hook your mobile tests with Frida
|
|
5
5
|
Author-email: "Helvio Junior (M4v3r1ck)" <helvio_junior@hotmail.com>
|
|
6
6
|
Maintainer-email: "Helvio Junior (M4v3r1ck)" <helvio_junior@hotmail.com>
|
|
@@ -12,7 +12,6 @@ Keywords: Frida Fusion,Frida,Frida Scripts,development,red team
|
|
|
12
12
|
Classifier: Development Status :: 4 - Beta
|
|
13
13
|
Classifier: Environment :: Console
|
|
14
14
|
Classifier: Intended Audience :: System Administrators
|
|
15
|
-
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
16
15
|
Classifier: Natural Language :: English
|
|
17
16
|
Classifier: Operating System :: OS Independent
|
|
18
17
|
Classifier: Programming Language :: Python
|
|
@@ -27,6 +26,12 @@ Classifier: Topic :: Security
|
|
|
27
26
|
Classifier: Topic :: Utilities
|
|
28
27
|
Requires-Python: <4,>=3.9
|
|
29
28
|
Description-Content-Type: text/markdown
|
|
29
|
+
License-File: LICENSE
|
|
30
|
+
Requires-Dist: colorama
|
|
31
|
+
Requires-Dist: requests>=2.23.0
|
|
32
|
+
Requires-Dist: frida>=15.1.17
|
|
33
|
+
Requires-Dist: frida-tools>=10.8.0
|
|
34
|
+
Dynamic: license-file
|
|
30
35
|
|
|
31
36
|
# Frida Fusion
|
|
32
37
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
[build-system]
|
|
2
|
-
requires = ["setuptools"
|
|
2
|
+
requires = ["setuptools>=80.0.0"]
|
|
3
3
|
build-backend = "setuptools.build_meta"
|
|
4
4
|
|
|
5
5
|
[project]
|
|
@@ -8,13 +8,12 @@ name = "frida-fusion"
|
|
|
8
8
|
description = "Hook your mobile tests with Frida"
|
|
9
9
|
readme = {file = "README.md", content-type = "text/markdown"}
|
|
10
10
|
requires-python = ">=3.9,<4"
|
|
11
|
-
license =
|
|
11
|
+
license-files = ["LICEN[CS]E*"]
|
|
12
12
|
keywords = ["Frida Fusion", "Frida", "Frida Scripts", "development", "red team"]
|
|
13
13
|
classifiers = [
|
|
14
14
|
"Development Status :: 4 - Beta",
|
|
15
15
|
"Environment :: Console",
|
|
16
16
|
"Intended Audience :: System Administrators",
|
|
17
|
-
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
18
17
|
"Natural Language :: English",
|
|
19
18
|
"Operating System :: OS Independent",
|
|
20
19
|
"Programming Language :: Python",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|