abbe7a18fc
- P0: hooks.py 3-tuple fix, trigger_dispatcher Contract, contacts/plugin unregister_actions_by_owner - P0: 5 test files — check_permission mocks removed, hardcoded DB credential → env var - P1: attachment_service DmsFile via Contract helper, restore_registry/history_hooks dedup - P1: mail/plugin restore unregister, mcp_client datetime.now(UTC), saved_views/filters patterns - P1: ProtectedRoute fail-closed, 13 test assertion fixes (bcrypt, DB-URLs, SECRET_KEYs) - P2: deprecated notifications → post_system_message (3 files), forgejo Base, report_generator lazy import - P2: webhooks permissions, deps.py/roles.py plugin perms removed, import_export default - P2: address/tags/entity_links patterns removed, worker.py Contract-Umgehungen fixed - P2: 28 frontend TODOs (hardcoded constants, deprecated notification API) - P3: dead code, duplicates, deprecated imports, private attr, __import__ inline - P3: 8 frontend TODOs (LucideIcons, inline styles, XSS, i18n) - ruff: 838 → 0 (612 auto-fix + 246 manual + 27 F821 regression fix) - F821: 30 → 0 (AutomationDefinition, DmsFile, user_id, Path, Any, String) - Contract-Umgehungen: 2 neue gefunden (worker.py:169, worker.py:280) und gefixt
129 lines
3.6 KiB
Python
129 lines
3.6 KiB
Python
"""Plugin signature verification for external plugins.
|
|
|
|
Uses Ed25519 signatures to verify that a plugin ZIP package
|
|
has not been tampered with and comes from a trusted source.
|
|
|
|
Usage::
|
|
|
|
from app.plugins.signature import PluginSignature
|
|
|
|
# Verify a downloaded plugin
|
|
is_valid = PluginSignature.verify_signature(
|
|
zip_path=Path("plugin.zip"),
|
|
signature=b"...",
|
|
public_key=b"...",
|
|
)
|
|
|
|
# Compute hash for allowlist
|
|
file_hash = PluginSignature.compute_hash(Path("plugin.zip"))
|
|
|
|
# Sign a plugin (for plugin authors)
|
|
signature = PluginSignature.sign_plugin(
|
|
zip_path=Path("plugin.zip"),
|
|
private_key=b"...",
|
|
)
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import hashlib
|
|
import logging
|
|
from pathlib import Path
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class PluginSignature:
|
|
"""Verify plugin package signatures using Ed25519."""
|
|
|
|
@staticmethod
|
|
def compute_hash(file_path: Path) -> str:
|
|
"""Compute SHA-256 hash of a file.
|
|
|
|
Args:
|
|
file_path: Path to the file to hash.
|
|
|
|
Returns:
|
|
Hex-encoded SHA-256 hash string.
|
|
"""
|
|
sha256 = hashlib.sha256()
|
|
with open(file_path, "rb") as f:
|
|
for chunk in iter(lambda: f.read(8192), b""):
|
|
sha256.update(chunk)
|
|
return sha256.hexdigest()
|
|
|
|
@staticmethod
|
|
def verify_signature(
|
|
zip_path: Path,
|
|
signature: bytes,
|
|
public_key: bytes,
|
|
) -> bool:
|
|
"""Verify Ed25519 signature of a plugin ZIP.
|
|
|
|
Args:
|
|
zip_path: Path to the plugin ZIP file.
|
|
signature: The Ed25519 signature bytes.
|
|
public_key: The Ed25519 public key bytes.
|
|
|
|
Returns:
|
|
True if the signature is valid, False otherwise.
|
|
"""
|
|
try:
|
|
from nacl.exceptions import BadSignatureError
|
|
from nacl.signing import VerifyKey
|
|
|
|
file_hash = PluginSignature.compute_hash(zip_path)
|
|
verify_key = VerifyKey(public_key)
|
|
verify_key.verify(file_hash.encode(), signature)
|
|
logger.info("Signature verified for %s", zip_path.name)
|
|
return True
|
|
except ImportError:
|
|
logger.warning(
|
|
"PyNaCl not installed — signature verification disabled. "
|
|
"Install with: pip install pynacl"
|
|
)
|
|
return False
|
|
except BadSignatureError:
|
|
logger.warning("Invalid signature for %s", zip_path.name)
|
|
return False
|
|
except Exception:
|
|
logger.exception("Error verifying signature for %s", zip_path.name)
|
|
return False
|
|
|
|
@staticmethod
|
|
def sign_plugin(
|
|
zip_path: Path,
|
|
private_key: bytes,
|
|
) -> bytes:
|
|
"""Sign a plugin ZIP with an Ed25519 private key.
|
|
|
|
Args:
|
|
zip_path: Path to the plugin ZIP file.
|
|
private_key: The Ed25519 private key bytes.
|
|
|
|
Returns:
|
|
The Ed25519 signature bytes.
|
|
|
|
Raises:
|
|
ImportError: If PyNaCl is not installed.
|
|
"""
|
|
from nacl.signing import SigningKey
|
|
|
|
file_hash = PluginSignature.compute_hash(zip_path)
|
|
signing_key = SigningKey(private_key)
|
|
return signing_key.sign(file_hash.encode()).signature
|
|
|
|
@staticmethod
|
|
def generate_keypair() -> tuple[bytes, bytes]:
|
|
"""Generate a new Ed25519 key pair.
|
|
|
|
Returns:
|
|
Tuple of (private_key, public_key) bytes.
|
|
"""
|
|
from nacl.signing import SigningKey
|
|
|
|
signing_key = SigningKey.generate()
|
|
private_key = bytes(signing_key)
|
|
public_key = bytes(signing_key.verify_key)
|
|
return private_key, public_key
|