diff --git a/CHANGELOG.md b/CHANGELOG.md index 3676a06..767ec04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,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.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.7.1] - 2026-06-11 + +### Security Fixes +- Addressed multiple vulnerabilities identified in the v0.7.0 security audit. +- Moved `yt-dlp` credential passing from CLI arguments to secure temporary configuration files to prevent process list leakage. +- Enforced strict `0o600` POSIX permissions on `aria2c` temporary configuration files to protect generated RPC secrets. +- Replaced the unauthenticated local connection protocol with a secure HMAC-SHA256 signature validation. +- Excluded sensitive properties like `rpcSecret` and `rpcPort` from `DownloadItem` serialization so they are never saved to disk in plaintext. +- Mitigated SSRF (Server-Side Request Forgery) by strictly validating metadata fetch requests against private IP addresses and loopback ranges. +- Prevented potential path traversal vulnerabilities by validating destination file URLs during duplicate resolution. +- Sanitized custom HTTP headers to prevent CR/LF injection vectors. +- Re-architected `aria2c` port-finding with POSIX sockets to eliminate a known race-condition window. +- Applied rate-limiting and text length bounds to the custom `firelink://` scheme to mitigate DoS and injection attempts. + +### Fixes +- Implemented a thread-safe cleanup mechanism for temporary directories to resolve a concurrency race condition during engine cancellation. + ## [0.7.0] - 2026-06-11 ### New Features & Improvements diff --git a/README.md b/README.md index 43b4dd9..20def25 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ - 🪄 **Media Downloader:** Instantly extract high-quality media (4K, 1080p, MP3) with smart cascading format pickers, powered by bundled `yt-dlp` and `ffmpeg`. - 🎨 **Premium Native UI:** A responsive, frosted-glass SwiftUI interface strictly adhering to Apple Human Interface Guidelines, featuring a visual chunk map and dynamic progress tracking. - 🌐 **Seamless Browser Integration:** Send downloads directly from your browser via the secure Firelink Companion extension. -- 🛡️ **Privacy & Security:** Zero-configuration setup with deferred Keychain integration ensures your credentials are kept safe and only accessed when strictly necessary. +- 🛡️ **Privacy & Security:** Zero-configuration setup with deferred Keychain integration and secure HMAC-SHA256 authenticated local API endpoints ensure your system remains strictly isolated and protected from malicious scripts. - 🗂️ **Smart Organization:** Auto-categorizes incoming files and remembers your preferred download locations. - 🔄 **Native Updater:** Built-in seamless GitHub release checking for lightweight and transparent app updates.