
23 changes to exploits/shellcodes SysGauge 4.5.18 - Local Denial of Service Systematic SitAware - NVG Denial of Service Allok AVI DivX MPEG to DVD Converter 2.6.1217 - Buffer Overflow (SEH) Allok Video Joiner 4.6.1217 - Stack-Based Buffer Overflow Allok WMV to AVI MPEG DVD WMV Converter 4.6.1217 - Buffer Overflow Faleemi Windows Desktop Software - (DDNS/IP) Local Buffer Overflow Advantech WebAccess < 8.1 - webvrpcs DrawSrv.dll Path BwBuildPath Stack-Based Buffer Overflow osTicket 1.10 - SQL Injection osTicket 1.10 - SQL Injection (PoC) Open-AuditIT Professional 2.1 - Cross-Site Request Forgery Homematic CCU2 2.29.23 - Arbitrary File Write MiniCMS 1.10 - Cross-Site Request Forgery WordPress Plugin Relevanssi 4.0.4 - Reflected Cross-Site Scripting WordPress Plugin Contact Form 7 to Database Extension 2.10.32 - CSV Injection Homematic CCU2 2.29.23 - Remote Command Execution Joomla! Component Acymailing Starter 5.9.5 - CSV Macro Injection Joomla! Component AcySMS 3.5.0 - CSV Macro Injection WordPress Plugin WP Security Audit Log 3.1.1 - Sensitive Information Disclosure Tenda W308R v2 Wireless Router 5.07.48 - Cookie Session Weakness Remote DNS Change osCommerce 2.3.4.1 - Remote Code Execution Tenda W316R Wireless Router 5.07.50 - Remote DNS Change D-Link DIR-850L Wireless AC1200 Dual Band Gigabit Cloud Router - Authentication Bypass Tenda FH303/A300 Firmware V5.07.68_EN - Remote DNS Change Vtiger CRM 6.3.0 - Authenticated Arbitrary File Upload (Metasploit) Tenda W3002R/A302/w309r Wireless Router V5.07.64_en - Remote DNS Change (PoC)
26 lines
No EOL
1.2 KiB
Text
26 lines
No EOL
1.2 KiB
Text
# Exploit Title: WP Security Audit Log Plugin, Sensitive Information Disclosure <= 3.1.1
|
|
# Google Dork: inurl:/wp-content/uploads/wp-security-audit-log/
|
|
# Date: 3/13/2018
|
|
# Exploit Author: Colette Chamberland, Defiant, Inc.
|
|
# Vendor Homepage: http://wpwhitesecurity.com
|
|
# Software Link: https://wordpress.org/plugins/wp-security-audit-log/
|
|
# Version: <=3.1.1
|
|
# Tested on: Wordpress 4.9.x
|
|
# CVE : CVE-2018-8719
|
|
|
|
Description:
|
|
No protection on the wp-content/uploads/wp-security-audit-log/*
|
|
which is indexed by google and allows for attackers to possibly find user information (bad login attempts)
|
|
|
|
/wp-security-audit-log/classes/Sensors/System.php':
|
|
$upload_dir = wp_upload_dir();
|
|
$uploads_dir_path = trailingslashit( $upload_dir['basedir'] ) . 'wp-security-audit-log/404s/users/';
|
|
$uploads_url = trailingslashit( $upload_dir['baseurl'] ) . 'wp-security-audit-log/404s/users/';
|
|
|
|
/wp-security-audit-log/classes/Sensors/LogInOut.php':
|
|
// Directory for logged in users log files.
|
|
$user_upload_dir = wp_upload_dir();
|
|
$user_upload_path = trailingslashit( $user_upload_dir['basedir'] . '/wp-security-audit-log/failed-logins/' );
|
|
if ( ! $this->CheckDirectory( $user_upload_path ) ) {
|
|
wp_mkdir_p( $user_upload_path );
|
|
} |