Skip to content
KitploitKITPLOIT
ToolsBlog
Einreichen
ToolsBlog
Einreichen

Hacking-, PenTest- und Cybersicherheits-Tools für Ihr Sicherheitsarsenal!

Kitploit ist ein Verzeichnis von Hacking-, Cybersicherheits- und Pentesting-Tools. Entdecken Sie die neuesten Projekt-Updates, um Schwachstellen zu finden, Systeme zu analysieren, Tests zu automatisieren und Ihre Sicherheit zu stärken.

··Feeds·Kontakt·Datenschutz·© 2026 Kitploit

Tool-Verzeichnis

Kategorien

Alle Kategorien anzeigen
Loading categories
CVE-2026-13447 — Proof-of-Concept-Exploit für CVE-2026-13447, eine kritische Authentifizierungsumgehung im WordPress MStore API-Plugin über gefälschte Firebase-JWT-Token, mit einer lokalen Lab-Reproduktion. | Kitploit
Tools/GitHubGitHub/abraxas/cve-2026-13447
SchwachstellenanalyseExploitationWebanwendungs-ExploitationWebsicherheitKryptographiePenetrationstestsAuthentifizierungLabs & Praxis
GitHubabraxas/cve-2026-13447

CVE-2026-13447

Proof-of-Concept-Exploit für CVE-2026-13447, eine kritische Authentifizierungsumgehung im WordPress MStore API-Plugin über gefälschte Firebase-JWT-Token, mit einer lokalen Lab-Reproduktion.

Repository anzeigen
vor 5h 19mNoch nicht geprüft

Beliebteste

Alle anzeigen →

Entdecken Sie die meistgenutzten Tools unserer Community.

Alle Tools erkunden

Durchsuchen Sie unsere Tool-Sammlung

Alle Tools anzeigen →
Teilen

Abraxas Labs — CVE-2026-13447 — WordPress

abraxaslabs.tech  ·  github.com/abraxas  ·  @abraxas_null  ·  CVE-2026-13447

CVE-2026-13447 — WordPress

WordPress — MStore API 4.18.4 — inspireui

Das Mstore Api Plugin für WordPress ist in Versionen bis einschließlich 4.20.0 anfällig für Authentication Bypass via JWT Forgery. Ursache ist die fehlende kryptografische Signaturprüfung in der Funktion FirebasePhoneAuthHelper::verify_id_token(), die Firebase ID-Token-Claims (alg, kid, aud, iss) dekodiert und validiert, aber niemals openssl_verify() oder ein Äquivalent aufruft, um die JWT-Signatur gegen Googles tatsächliche öffentliche Schlüsselzertifikate zu prüfen. Dadurch ist es nicht authentifizierten Angreifern möglich, ein mit einem selbst generierten RSA-Schlüsselpaar signiertes Firebase Phone Auth JWT zu fälschen und jede Telefonnummer zu imitieren, was zu unbefugtem Zugriff auf bestehende WordPress-Konten oder zur Erstellung neuer beliebiger Konten führt.

CVECVE-2026-13447 · CVE.org
CWECWE-287
CVSSKritisch: 9.8 CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
ProduktWordPress — MStore API
Betroffenalle Versionen bis 4.20.0 (Lab 4.18.4; kein 4.20.0-Zip)
Gepatcht4.21.1 und später
Authkeine (siehe Source Map)
LizenzGNU Affero GPL v3.0
Labnur 127.0.0.1 · Vendor/Client-Disclosure-Paket, kein Scanner

Advisory (aus der Source Map)

verify_id_token ist der Sink. HTTP ist POST firebase_sms_v2 mit JSON id_token, kein Query-Parameter namens verify_id_token.


Einstieg

  • Methode: POST
  • Pfad: /wp-json/api/flutter_user/firebase_sms_v2
  • Router: POST /wp-json/api/flutter_user/firebase_sms_v2 (auch /?rest_route=/api/flutter_user/firebase_sms_v2). FlutterUserController permission_callback isPurchaseCodeVerified immer true. firebase_sms_verify_id_token liest php://input id_token. FirebasePhoneAuthHelper::verify_id_token prüft alg, kid in Googles Schlüsselliste, aud/iss aus der hochgeladenen firebase json, gibt phone_number zurück. firebase_sms_login_v2 sucht registered_phone_number und gibt generateCookieByUserId zurück. 4.21.1 fügt Signaturprüfung hinzu.
  • Hinweise: CVE-2026-13447 CWE-287 MStore API 4.18.4 (NVD bis 4.20.0; kein 4.20.0-Zip). Witness POCWitness13447 in JSON. Keine Reverse Shell.

Aufrufkette

  • GET Google x509 metadata, pick a kid
  • Build unsigned-verify JWT RS256 kid=that, aud=poc13447, iss=https://securetoken.google.com/poc13447, phone_number=+15551213447
  • POST /wp-json/api/flutter_user/firebase_sms_v2 {id_token}
  • verify_id_token skips openssl_verify, returns +15551213447
  • firebase_sms_login_v2 get_users registered_phone_number=that phone -> user 1
  • JSON cookie + displayname POCWitness13447

Lab-Voraussetzungen

  • MStore API 4.18.4
  • uploads/flutter_firebase/poc13447.json project_id=poc13447, Option mstore_firebase_file_name
  • Admin registered_phone_number=+15551213447 display_name=POCWitness13447
  • Lab-Host kann Google x509 abrufen (kid muss in dieser Liste sein)

Witness

Der POST-JSON-Body enthält POCWitness13447 (Admin-Displayname) und Cookie. Ein generisches 200 ohne diesen String ist es nicht.

Kein Erfolg

  • id_token ist ungültig
  • Firebase Private-Key-Datei nicht gefunden
  • Benutzer existiert nicht
  • 200 ohne POCWitness13447
  • Reverse Shell oder ausgehende Verbindung außer dem Google-kid-Abruf

Patch / Behebung

Zuerst dies tun: Aktualisieren Sie MStore API auf 4.21.1 oder neuer.

Nach dem Upgrade verifizieren

  • Führen Sie CVE-2026-13447-Abraxas-Labs.py erneut gegen den gepatchten Build aus: Der zugeordnete Witness darf nicht erscheinen.
  • Bestätigen Sie das Vendor-Advisory / Changeset im bereitgestellten Tree (siehe Referenzen).
  • Eine WAF-Signatur ist Verzögerung, kein Patch.

Wenn Sie nicht sofort aktualisieren können

  • Deaktivieren oder isolieren Sie die betroffene Komponente.
  • Suchen Sie in der Produktion nach der Witness-Bedingung (neue privilegierte Benutzer, unerwartete Dateien, eingefügte Zeilen — was auch immer die Map dieser CVE benennt).

Reproduktion (autorisiertes Lab)

Zielen Sie nur auf http://127.0.0.1:8088 (oder das von Ihnen gebundene Loopback). Richten Sie dieses Skript nicht auf das Internet.

root@kitploit:~
python3 CVE-2026-13447-Abraxas-Labs.py

Erfolg ist der Witness oben im Response-Body. Generisches 200-HTML ist es nicht.


Lab-Images

Loopback-Stack zur Reproduktion. Offizielle Images, sofern nicht ein Dockerfile in diesem Ordner aus dem Quellcode baut.

  • lab/docker-compose.yml
  • lab/docker-compose.override.yml
  • lab/Dockerfile
root@kitploit:~
cd lab
docker compose up --force-recreate

Binden Sie den verwundbaren Produkt-Tree neben Compose ein, wenn die YAML ein lokales Verzeichnis mountet (Plugin-Zip / Source-Tag aus der Versionstabelle). Veröffentlichen Sie nichts außer 127.0.0.1.


Referenzen

  • CVE-2026-13447 · NVD

  • CVE-2026-13447 · CVE.org

  • plugins.trac.wordpress.org/browser/mstore-api/tags/4.18.4/controllers/flutter-user.php#L829

  • plugins.trac.wordpress.org/browser/mstore-api/tags/4.18.4/controllers/flutter-user.php#L940

  • plugins.trac.wordpress.org/browser/mstore-api/tags/4.18.4/controllers/helpers/firebase-phone-auth-helper.php#L5

  • plugins.trac.wordpress.org/browser/mstore-api/trunk/controllers/flutter-user.php#L829

  • plugins.trac.wordpress.org/browser/mstore-api/trunk/controllers/flutter-user.php#L940

  • plugins.trac.wordpress.org/browser/mstore-api/trunk/controllers/helpers/firebase-phone-auth-helper.php#L5

  • www.wordfence.com/threat-intel/vulnerabilities/id/4a1127af-74f6-4748-9aee-5a8c6c2766a4?source=cve

  • github.com/advisories/GHSA-6wfp-pwm3-667v

  • nvd.nist.gov/vuln/detail/CVE-2026-13447

  • Plugin-Verzeichnis: mstore-api

  • Trac-Browser: plugins.trac.wordpress.org/mstore-api

  • SVN-Tags: plugins.svn.wordpress.org/mstore-api

  • Abraxas Labs: abraxaslabs.tech · github.com/abraxas · @abraxas_null


Datensätze (strukturiert)

root@kitploit:~
# CVE-2026-13447  (structured records)

- input: `https://nvd.nist.gov/vuln/detail/CVE-2026-13447`
- CWE: CWE-287
- published: 2026-09-05T06:17:09.403

## NVD description

The Mstore Api plugin for WordPress is vulnerable to Authentication Bypass via JWT Forgery in versions up to, and including, 4.20.0 This is due to missing cryptographic signature verification in the FirebasePhoneAuthHelper::verify_id_token() function, which decodes and validates Firebase ID token claims (alg, kid, aud, iss) but never calls openssl_verify() or any equivalent to validate the JWT signature against Google's actual public key certificates. This makes it possible for unauthenticated attackers to forge a Firebase Phone Auth JWT signed with a self-generated RSA key pair and impersonate any phone number, resulting in unauthorized access to existing WordPress accounts or creation of new arbitrary accounts.

## MITRE description

The Mstore Api plugin for WordPress is vulnerable to Authentication Bypass via JWT Forgery in versions up to, and including, 4.20.0 This is due to missing cryptographic signature verification in the FirebasePhoneAuthHelper::verify_id_token() function, which decodes and validates Firebase ID token claims (alg, kid, aud, iss) but never calls openssl_verify() or any equivalent to validate the JWT signature against Google's actual public key certificates. This makes it possible for unauthenticated attackers to forge a Firebase Phone Auth JWT signed with a self-generated RSA key pair and impersonate any phone number, resulting in unauthorized access to existing WordPress accounts or creation of new arbitrary accounts.

## Affected

- inspireui MStore API – Create Native Android & iOS Apps On The Cloud 0 affected

## References (JSON sources only)

- https://plugins.trac.wordpress.org/browser/mstore-api/tags/4.18.4/controllers/flutter-user.php#L829
- https://plugins.trac.wordpress.org/browser/mstore-api/tags/4.18.4/controllers/flutter-user.php#L940
- https://plugins.trac.wordpress.org/browser/mstore-api/tags/4.18.4/controllers/helpers/firebase-phone-auth-helper.php#L5
- https://plugins.trac.wordpress.org/browser/mstore-api/trunk/controllers/flutter-user.php#L829
- https://plugins.trac.wordpress.org/browser/mstore-api/trunk/controllers/flutter-user.php#L940
- https://plugins.trac.wordpress.org/browser/mstore-api/trunk/controllers/helpers/firebase-phone-auth-helper.php#L5
- https://www.wordfence.com/threat-intel/vulnerabilities/id/4a1127af-74f6-4748-9aee-5a8c6c2766a4?source=cve
- https://github.com/advisories/GHSA-6wfp-pwm3-667v
- https://nvd.nist.gov/vuln/detail/CVE-2026-13447

## GitHub advisory

The Mstore Api plugin for WordPress is vulnerable to Authentication Bypass via JWT Forgery in...

The Mstore Api plugin for WordPress is vulnerable to Authentication Bypass via JWT Forgery in versions up to, and including, 4.20.0 This is due to missing cryptographic signature verification in the FirebasePhoneAuthHelper::verify_id_token() function, which decodes and validates Firebase ID token claims (alg, kid, aud, iss) but never calls openssl_verify() or any equivalent to validate the JWT signature against Google's actual public key certificates. This makes it possible for unauthenticated attackers to forge a Firebase Phone Auth JWT signed with a self-generated RSA key pair and impersonate any phone number, resulting in unauthorized access to existing WordPress accounts or creation of new arbitrary accounts.

Lizenz

Dieses Disclosure-Paket ist unter der GNU Affero General Public License v3.0 lizenziert. Siehe LICENSE.


Haftungsausschluss

Dieses Paket ist für den Vendor, den Site-Eigentümer und lizenzierte Labs. Das Skript kommuniziert mit 127.0.0.1. Die Verwendung gegen Systeme, die Ihnen nicht gehören, ist von Abraxas Labs nicht autorisiert. Keine Gewährleistung.

abraxaslabs.tech · github.com/abraxas · @abraxas_null

Tool herunterladen