---
title: "Deprecation: #81852 - Deprecated Usage of EXT:rsaauth"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:deprecation-81852"
source: "Changelog/9.1/Deprecation-81852-DeprecatedUsageOfEXTrsaauth.rst"
typo3-version: "9.1"
typo3-major: 9
type: "deprecation"
issue: 81852
forge: "https://forge.typo3.org/issues/81852"
tags: ["Backend", "Frontend", "NotScanned"]
rendered: "2026-09-18T17:00:34+00:00"
---

# Deprecation: #81852 - Deprecated Usage of EXT:rsaauth {#deprecation-81852}

See [forge#81852](https://forge.typo3.org/issues/81852)

## Description {#description}

The extension rsaauth has been marked as deprecated. The reasons are:

-   With the extension the password transmission is the only thing that is encrypted
-   Even though the transmission is encrypted, the public key exchange from server to client
    is not authenticated. This means an attacker in the middle can hand out a bogus public key
    to the client, which means that the password will then be encrypted with the key of the attacker
-   Session ids via cookies are still transferred unencrypted. Since (valid) session ids are almost
    as valuable as passwords, jumping through hoops to protect the password, but keeping the session
    id unencrypted, seems irrational (and is insecure).

## Impact {#impact}

An additional report checks the usage of the extension and if the backend is served via https.

## Affected Installations {#affected-installations}

Any TYPO3 site using the extension rsaauth.

## Migration {#migration}

Use https:// for any site, especially for pages which transfer passwords, including TYPO3 backend and frontend logins.

The usage of a secure connection is also enforced by the browsers which mark http:// pages that
collect passwords or credit cards as insecure. In long-term all http:// sites will be marked as insecure.

After removing rsaauth, the `$GLOBALS['TYPO3_CONF_VARS']['BE']['loginSecurityLevel']` and
`$GLOBALS['TYPO3_CONF_VARS']['FE']['loginSecurityLevel']` must be set to `normal`,
otherwise login will not be possible.
