dkd/kula-audit

TYPO3 extension audit: upgrade readiness, vulnerabilities, and SBOM via Kula API

Maintainers

Package info

github.com/dkd-dobberkau/kula-audit

Type:typo3-cms-extension

pkg:composer/dkd/kula-audit

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v1.0.0 2026-03-02 09:23 UTC

This package is auto-updated.

Last update: 2026-03-02 09:44:08 UTC


README

Audit your TYPO3 installation directly from the backend: upgrade readiness, known vulnerabilities, and CycloneDX SBOM — powered by the Kula API.

Features

  • CLI Commandvendor/bin/typo3 kula:audit reads composer.lock and checks against the Kula API
  • Dashboard Widget — Traffic light overview (green/yellow/red) with package stats
  • Backend Module — Full detail tables under Admin Tools with upgrade readiness and vulnerability data

Requirements

  • TYPO3 12.4 or 13.x
  • PHP 8.1+
  • Access to a running Kula instance (default: https://app.kula-audit.de/api/audit)

Installation

composer require dkd/kula-audit

Then activate the extension in the TYPO3 Extension Manager or via CLI:

vendor/bin/typo3 extension:activate kula_audit

Configuration

Set the API URL and target TYPO3 version in config/system/settings.php or via the Settings module:

$GLOBALS['TYPO3_CONF_VARS']['EXTENSIONS']['kula_audit'] = [
    'apiUrl' => 'https://app.kula-audit.de/api/audit',
    'targetMajor' => 13,
];

Usage

CLI

# Run audit (uses 24h cache)
vendor/bin/typo3 kula:audit

# Force fresh check
vendor/bin/typo3 kula:audit --force

# JSON output (for CI/CD pipelines)
vendor/bin/typo3 kula:audit --json

Scheduler

The kula:audit command is schedulable via the TYPO3 Scheduler. Recommended frequency: once daily.

Dashboard

Add the "Extension Audit" widget to your TYPO3 Dashboard for a quick overview.

Backend Module

Find the full audit report under Admin Tools > Kula Audit.

License

GPL-2.0-or-later