Release v2.1.0
This commit is contained in:
parent
9869efade7
commit
4cdda47dc4
23
CHANGELOG.md
23
CHANGELOG.md
|
@ -4,13 +4,23 @@ All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
## [2.1.0] - Not release
|
## [2.1.0] - 2024-10-20
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- Added private key function.
|
- Added private key function.
|
||||||
- Option to Skip automatic detection of private function.
|
- Option to skip automatic detection of private functions.
|
||||||
- Widevine SDK 22 support confirmed.
|
- Confirmed support for Widevine SDK 22.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Updated dependencies.
|
||||||
|
- Clarified details regarding optional dependencies.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Extra argument in the `GetDeviceID` function.
|
||||||
|
- Incorrect handling of the display of unknown functions.
|
||||||
|
|
||||||
## [2.0.9] - 2024-09-25
|
## [2.0.9] - 2024-09-25
|
||||||
|
|
||||||
|
@ -230,8 +240,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- Added a new function specific to VENDOR 15 based on insights
|
- Added a new function specific to VENDOR 15 based on insights from [videohelp](https://forum.videohelp.com/threads/414104-Impossible-situation-dumping-keys-using-virtual-Android#post2730673).
|
||||||
from [videohelp](https://forum.videohelp.com/threads/414104-Impossible-situation-dumping-keys-using-virtual-Android#post2730673).
|
|
||||||
- Included a detailed process for extracting keys in offline mode.
|
- Included a detailed process for extracting keys in offline mode.
|
||||||
|
|
||||||
## [1.0.6] - 2024-04-26
|
## [1.0.6] - 2024-04-26
|
||||||
|
@ -271,8 +280,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- Switched from Frida to ADB for listing processes due to
|
- Switched from Frida to ADB for listing processes due to a [Frida issue](https://github.com/frida/frida/issues/1225#issuecomment-604181822).
|
||||||
a [Frida issue](https://github.com/frida/frida/issues/1225#issuecomment-604181822).
|
|
||||||
- Optimized process search to improve performance.
|
- Optimized process search to improve performance.
|
||||||
- Improved error reporting when the Widevine process is not detected.
|
- Improved error reporting when the Widevine process is not detected.
|
||||||
|
|
||||||
|
@ -324,6 +332,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
|
|
||||||
- Initial release of the project, laying the foundation for future enhancements and features.
|
- Initial release of the project, laying the foundation for future enhancements and features.
|
||||||
|
|
||||||
|
[2.1.0]: https://github.com/hyugogirubato/KeyDive/releases/tag/v2.1.0
|
||||||
[2.0.9]: https://github.com/hyugogirubato/KeyDive/releases/tag/v2.0.9
|
[2.0.9]: https://github.com/hyugogirubato/KeyDive/releases/tag/v2.0.9
|
||||||
[2.0.8]: https://github.com/hyugogirubato/KeyDive/releases/tag/v2.0.8
|
[2.0.8]: https://github.com/hyugogirubato/KeyDive/releases/tag/v2.0.8
|
||||||
[2.0.7]: https://github.com/hyugogirubato/KeyDive/releases/tag/v2.0.7
|
[2.0.7]: https://github.com/hyugogirubato/KeyDive/releases/tag/v2.0.7
|
||||||
|
|
|
@ -2,4 +2,4 @@ from .core import Core
|
||||||
from .cdm import Cdm
|
from .cdm import Cdm
|
||||||
from .vendor import Vendor
|
from .vendor import Vendor
|
||||||
|
|
||||||
__version__ = '2.0.9'
|
__version__ = '2.1.0'
|
||||||
|
|
|
@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
|
||||||
|
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "keydive"
|
name = "keydive"
|
||||||
version = "2.0.9"
|
version = "2.1.0"
|
||||||
description = "Extract Widevine L3 keys from Android devices effortlessly, spanning multiple Android versions for DRM research and education."
|
description = "Extract Widevine L3 keys from Android devices effortlessly, spanning multiple Android versions for DRM research and education."
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
authors = ["hyugogirubato <65763543+hyugogirubato@users.noreply.github.com>"]
|
authors = ["hyugogirubato <65763543+hyugogirubato@users.noreply.github.com>"]
|
||||||
|
@ -36,14 +36,14 @@ include = [
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = "^3.8"
|
python = "^3.8"
|
||||||
coloredlogs = "^15.0.1"
|
coloredlogs = "^15.0.1"
|
||||||
frida = "^16.4.7"
|
frida = "^16.5.6"
|
||||||
pathlib = "^1.0.1"
|
pathlib = "^1.0.1"
|
||||||
pycryptodomex = "^3.20.0"
|
pycryptodomex = "^3.21.0"
|
||||||
xmltodict = "^0.13.0"
|
|
||||||
pywidevine = "^1.8.0"
|
pywidevine = "^1.8.0"
|
||||||
PyYAML = "^6.0.1"
|
|
||||||
Flask = "^3.0.3"
|
|
||||||
pathvalidate = "^3.2.1"
|
pathvalidate = "^3.2.1"
|
||||||
|
PyYAML = { version = "^6.0.2", optional = true }
|
||||||
|
Flask = { version = "^3.0.3", optional = true }
|
||||||
|
xmltodict = { version = "^0.14.2", optional = true }
|
||||||
|
|
||||||
[tool.poetry.scripts]
|
[tool.poetry.scripts]
|
||||||
keydive = "keydive.__main__:main"
|
keydive = "keydive.__main__:main"
|
||||||
|
|
Loading…
Reference in New Issue