Skip to content

[Dev Beta] Persistent XSS in Inbox

High
glenn-sorrentino published GHSA-4v8c-r6h2-fhh3 Jun 25, 2024

Package

Hush Line

Affected versions

Dev Beta

Patched versions

Dev Beta

Description

Summary

There is a persistent XSS in the Inbox.

Details

There is a stored XSS in the Inbox. The input is displayed using the safe Jinja2 attribute, and thus not sanitized upon display. If GPG encryption is enabled, it is trivial to bypass server side encryption by setting client_side_encrypted=true and send the payload in plaintext in the POST request and have the XSS execute in the recipient's inbox anyway.

<div class="message{% if 'BEGIN PGP MESSAGE' in message.content %} encrypted{% endif %}" data-encrypted-content="{{ message.content | safe }}">

if not client_side_encrypted and user.pgp_key:

PoC

Send to the target user:

"><img src=https://lsd.cat/icon.png>

To see that image inclusion works. Se client_side_encrypted=true and send the payload plaintext to demo the attack against someone a user who has GPG encryption enabled.

Impact

This attack allows to inject HTML. Chained with a CSP bypass, reported in a separate issue, it allows for full account takeover and inbox exfiltration. Via JavaScript, it would be possible to dump the entire Inbox page. Furthermore, an attacker might change or remove the GPG key and disable 2FA since no additional authentication is required for those actions.

hushline

Note: I tried to report this as suggested in Security.md via the scidsg tipline. Received no reply in ~5 days.

Severity

High
8.8
/ 10

CVSS base metrics

Attack vector
Network
Attack complexity
Low
Privileges required
None
User interaction
Required
Scope
Unchanged
Confidentiality
High
Integrity
High
Availability
High
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H

CVE ID

CVE-2024-38521

Weaknesses

Credits