smichaelsen/no-insecure-typo3-extensions

There is no license information available for the latest version (dev-master) of this package.

This package declares conflicts to insecure TYPO3 extensions

dev-master 2024-04-02 20:01 UTC

This package is auto-updated.

Last update: 2024-04-02 20:01:41 UTC


README

This package is inspired by roave/security-advisories. When you require this package it ensures that you can not load TYPO3 extensions in versions with known vulnerabilities (according to the rating in the TER by the TYPO3 security team).

I've built this with best intentions and to my best knowledge. Nevertheless this comes without guarantee. Do not hold me responsible in case something unexpected/undesired happens.

Usage

Option #1: Require

composer require smichaelsen/no-insecure-typo3-extensions dev-master

Require this package in your project permanently and from now on when you require a TYPO3 extension that has known security issues you will get a composer conflict on composer update.

Pro: Easy to setup and fits every (composer based) TYPO3 project.
Con: You only recognize insecure extensions when you actively perform composer update.

Option #2: Dry Run in CI

If you have a CI that can run tests on your project you can perform on every test:

composer update --dry-run smichaelsen/no-insecure-typo3-extensions dev-master

Pro: You will immediatelly be informed about insecure extensions in your project in every test run.
Con: You need a CI server or a similar setup where automatic tests are performed.

Does this make my project (more) secure?

When you are maintaining TYPO3 projects it's your responsibility to stay up to date with security advisories and best practices. This package can not take this responsibility from you. However it can be an additional security measure.

Which TYPO3 extensions are covered?

This package relies on information from the TYPO3 TER - so only extensions that are published there are covered. It also covers Extensions published via packagist, when they are available in the TER.

How (often) is it updated?

This project automatically checks the TER extension list for updated security information twice a day and updates this package when necessary.