frida-server 1.0.0__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.
- frida_server-1.0.0/CHANGELOG.md +27 -0
- frida_server-1.0.0/LICENSE +674 -0
- frida_server-1.0.0/MANIFEST.in +13 -0
- frida_server-1.0.0/PKG-INFO +102 -0
- frida_server-1.0.0/README.md +65 -0
- frida_server-1.0.0/frida_server/__init__.py +73 -0
- frida_server-1.0.0/frida_server/__main__.py +10 -0
- frida_server-1.0.0/frida_server/checksums.py +71 -0
- frida_server-1.0.0/frida_server/cli.py +101 -0
- frida_server-1.0.0/frida_server/console.py +54 -0
- frida_server-1.0.0/frida_server/deployer.py +210 -0
- frida_server-1.0.0/frida_server/device.py +296 -0
- frida_server-1.0.0/frida_server/downloader.py +112 -0
- frida_server-1.0.0/frida_server/exceptions.py +34 -0
- frida_server-1.0.0/frida_server/host.py +164 -0
- frida_server-1.0.0/frida_server/platform_tools.py +107 -0
- frida_server-1.0.0/frida_server/py.typed +0 -0
- frida_server-1.0.0/frida_server.egg-info/PKG-INFO +102 -0
- frida_server-1.0.0/frida_server.egg-info/SOURCES.txt +23 -0
- frida_server-1.0.0/frida_server.egg-info/dependency_links.txt +1 -0
- frida_server-1.0.0/frida_server.egg-info/entry_points.txt +2 -0
- frida_server-1.0.0/frida_server.egg-info/requires.txt +6 -0
- frida_server-1.0.0/frida_server.egg-info/top_level.txt +1 -0
- frida_server-1.0.0/pyproject.toml +71 -0
- frida_server-1.0.0/setup.cfg +4 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project are documented here. The format is based on
|
|
4
|
+
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project
|
|
5
|
+
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
|
+
|
|
7
|
+
## [1.0.0] - 2026-08-27
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
- Initial release.
|
|
11
|
+
- One-command deployment of `frida-server` to a connected Android device.
|
|
12
|
+
- Automatic device and CPU-architecture detection.
|
|
13
|
+
- Version matching against the PC's installed Frida (with optional update).
|
|
14
|
+
- SHA-256 integrity verification: the on-device binary is checked against a
|
|
15
|
+
per-architecture cached digest, and a mismatch (corrupt/tampered/foreign
|
|
16
|
+
binary) or a missing cache entry triggers a fresh, verified re-deploy; pushed
|
|
17
|
+
binaries are verified after transfer.
|
|
18
|
+
- Multi-device support with independent checksums per CPU architecture.
|
|
19
|
+
- Automatic download of Android platform-tools (`adb`) when it is not on `PATH`.
|
|
20
|
+
- Root handling via `adb root` with `su` (Magisk) fallback.
|
|
21
|
+
- Idempotent reuse of an already-matching, verified on-device server, with a
|
|
22
|
+
confirmation prompt (default: no) before restarting one that is already running.
|
|
23
|
+
- Automatic port forwarding after a successful start.
|
|
24
|
+
- CLI (`frida-server`), module entry point (`python -m frida_server`), and a
|
|
25
|
+
public `setup()` library API.
|
|
26
|
+
|
|
27
|
+
[1.0.0]: https://github.com/SHAJON-404/frida-server/releases/tag/v1.0.0
|