android-decrypt-hub 0.0.1__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.
- android_decrypt_hub-0.0.1/PKG-INFO +31 -0
- android_decrypt_hub-0.0.1/README.md +18 -0
- android_decrypt_hub-0.0.1/pyproject.toml +23 -0
- android_decrypt_hub-0.0.1/setup.cfg +4 -0
- android_decrypt_hub-0.0.1/src/android_decrypt_hub/__init__.py +20 -0
- android_decrypt_hub-0.0.1/src/android_decrypt_hub.egg-info/PKG-INFO +31 -0
- android_decrypt_hub-0.0.1/src/android_decrypt_hub.egg-info/SOURCES.txt +7 -0
- android_decrypt_hub-0.0.1/src/android_decrypt_hub.egg-info/dependency_links.txt +1 -0
- android_decrypt_hub-0.0.1/src/android_decrypt_hub.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: android-decrypt-hub
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: AndroidDecryptHub — Android runtime analysis companion for IOSDecryptHub (reserved, work in progress)
|
|
5
|
+
Author: IOSDecryptHub
|
|
6
|
+
Keywords: android,reverse-engineering,decrypt,hook
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: Environment :: Console
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
11
|
+
Requires-Python: >=3.10
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# android-decrypt-hub
|
|
15
|
+
|
|
16
|
+
Android 版运行时分析工具(IOSDecryptHub 的 Android 对应物)——**开发中**。
|
|
17
|
+
|
|
18
|
+
本包当前为占位版本,用于在 PyPI 注册 `android-decrypt-hub` 项目名,防止被抢占。
|
|
19
|
+
|
|
20
|
+
- iOS 版项目:https://ios.decrypthub.com
|
|
21
|
+
- 规划能力:加解密 Hook(Java/JNI/Native)、文件监控、网络抓包、脱壳(DEX)、MCP 分析服务
|
|
22
|
+
|
|
23
|
+
## 安装
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
pip install android-decrypt-hub
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## 状态
|
|
30
|
+
|
|
31
|
+
`Development Status :: 1 - Planning`,CLI 实现进行中。
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# android-decrypt-hub
|
|
2
|
+
|
|
3
|
+
Android 版运行时分析工具(IOSDecryptHub 的 Android 对应物)——**开发中**。
|
|
4
|
+
|
|
5
|
+
本包当前为占位版本,用于在 PyPI 注册 `android-decrypt-hub` 项目名,防止被抢占。
|
|
6
|
+
|
|
7
|
+
- iOS 版项目:https://ios.decrypthub.com
|
|
8
|
+
- 规划能力:加解密 Hook(Java/JNI/Native)、文件监控、网络抓包、脱壳(DEX)、MCP 分析服务
|
|
9
|
+
|
|
10
|
+
## 安装
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
pip install android-decrypt-hub
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## 状态
|
|
17
|
+
|
|
18
|
+
`Development Status :: 1 - Planning`,CLI 实现进行中。
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=69"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "android-decrypt-hub"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "AndroidDecryptHub — Android runtime analysis companion for IOSDecryptHub (reserved, work in progress)"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
authors = [{ name = "IOSDecryptHub" }]
|
|
12
|
+
keywords = ["android", "reverse-engineering", "decrypt", "hook"]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 1 - Planning",
|
|
15
|
+
"Environment :: Console",
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
18
|
+
]
|
|
19
|
+
dependencies = [
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
[tool.setuptools.packages.find]
|
|
23
|
+
where = ["src"]
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"""android-decrypt-hub — reserved package name.
|
|
2
|
+
|
|
3
|
+
Android counterpart of IOSDecryptHub (https://ios.decrypthub.com).
|
|
4
|
+
This is a placeholder release to reserve the PyPI project name;
|
|
5
|
+
the CLI implementation is in progress.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
__version__ = "0.0.1"
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
def main() -> int:
|
|
12
|
+
print(
|
|
13
|
+
"android-decrypt-hub: package name reserved, implementation in progress. "
|
|
14
|
+
"See https://ios.decrypthub.com for the iOS version."
|
|
15
|
+
)
|
|
16
|
+
return 0
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
if __name__ == "__main__":
|
|
20
|
+
raise SystemExit(main())
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: android-decrypt-hub
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: AndroidDecryptHub — Android runtime analysis companion for IOSDecryptHub (reserved, work in progress)
|
|
5
|
+
Author: IOSDecryptHub
|
|
6
|
+
Keywords: android,reverse-engineering,decrypt,hook
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: Environment :: Console
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
11
|
+
Requires-Python: >=3.10
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# android-decrypt-hub
|
|
15
|
+
|
|
16
|
+
Android 版运行时分析工具(IOSDecryptHub 的 Android 对应物)——**开发中**。
|
|
17
|
+
|
|
18
|
+
本包当前为占位版本,用于在 PyPI 注册 `android-decrypt-hub` 项目名,防止被抢占。
|
|
19
|
+
|
|
20
|
+
- iOS 版项目:https://ios.decrypthub.com
|
|
21
|
+
- 规划能力:加解密 Hook(Java/JNI/Native)、文件监控、网络抓包、脱壳(DEX)、MCP 分析服务
|
|
22
|
+
|
|
23
|
+
## 安装
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
pip install android-decrypt-hub
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## 状态
|
|
30
|
+
|
|
31
|
+
`Development Status :: 1 - Planning`,CLI 实现进行中。
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
android_decrypt_hub
|