From ff6e1034ebd67e5174d2d2cd7ec490d753712683 Mon Sep 17 00:00:00 2001 From: Offensive Security Date: Thu, 9 Jul 2020 05:02:07 +0000 Subject: [PATCH] DB: 2020-07-09 2 changes to exploits/shellcodes SuperMicro IPMI 03.40 - Cross-Site Request Forgery (Add Admin) BSA Radar 1.6.7234.24750 - Cross-Site Request Forgery (Change Password) --- exploits/hardware/webapps/48652.txt | 30 +++++++++++++++++++ exploits/hardware/webapps/48653.txt | 46 +++++++++++++++++++++++++++++ files_exploits.csv | 2 ++ 3 files changed, 78 insertions(+) create mode 100644 exploits/hardware/webapps/48652.txt create mode 100644 exploits/hardware/webapps/48653.txt diff --git a/exploits/hardware/webapps/48652.txt b/exploits/hardware/webapps/48652.txt new file mode 100644 index 000000000..78374eaf1 --- /dev/null +++ b/exploits/hardware/webapps/48652.txt @@ -0,0 +1,30 @@ +# Exploit Title: SuperMicro IPMI 03.40 - Cross-Site Request Forgery (Add Admin) +# Exploit Author: Metin Yunus Kandemir +# Vendor Homepage: https://www.supermicro.com/ +# Software Link: https://www.supermicro.com/en/solutions/management-software/bmc-resources +# Version: X10DRH-iT motherboards with BIOS 2.0a and IPMI firmware 03.40 +# CVE: CVE-2020-15046 +# Source: https://www.totalpentest.com/post/supermicro-ipmi-webgui-cross-site-request-forgery + +# Description: +# The web interface on Supermicro X10DRH-iT motherboards with BIOS 2.0a and +# IPMI firmware 03.40 +# allows remote attackers to exploit a cgi/config_user.cgi CSRF issue to +add new admin users. +# The fixed versions are BIOS 3.2 and firmware 03.88. + +# PoC : + + + + + +
+ + + + + +
+ + \ No newline at end of file diff --git a/exploits/hardware/webapps/48653.txt b/exploits/hardware/webapps/48653.txt new file mode 100644 index 000000000..d1806c8da --- /dev/null +++ b/exploits/hardware/webapps/48653.txt @@ -0,0 +1,46 @@ +# Exploit title: BSA Radar 1.6.7234.24750 - Cross-Site Request Forgery (Change Password) +# Exploit Author: William Summerhill +# Date: 2020-06-22 +# Vendor Homepage:bhttps://www.globalradar.com/ +# Version: BSA Radar - Version 1.6.7234.24750 and lower +# CVE: CVE-2020-14944 + +# Description: The Global RADAR BSA Radar 1.6.7234.X application lacks valid authorization +# controls in multiple functions while logged into the application. +# This can allow for manipulation and takeover of user accounts if successfully exploited. + +# The following vulnerable functions are exposed: ChangePassword, SaveUserProfile, GetUser + +Proof of Concept: + + 1. ChangePassword API endpoint - Allows the ability to update the password belonging to another account by their UserID, and therefore leading to account takeover. + HTTP Request PoC: + POST /WS/AjaxWS.asmx/ChangePassword + + {"password": + {"UserID":XXXX,"NewPassword":"NEWPASSHERE","NewPasswordConfirm":"NEWPASSHERE",} } + + The UserID and NewPassword parameters can be forged to force the password change of another existing user account by using their UserID. + + 2. SaveUserProfile API endpoint - Allows the ability to update the user profile belonging to another account by using their UserID. This includes modifiable details like first name, last name, email, and phone number. This also allows for injection of a Stored Cross-Site Scripting (XSS) into arbitrary user account profiles as the first name and last name parameters are vulnerable. This can allow for session hijacking, stealing application data or redirecting users to attacker-controlled applications for phishing attacks. + HTTP Request PoC: + POST /WS/AjaxWS.asmx/SaveUserProfile + + {"user": + {"UserID":XXXX,"BankID":XXX,"Firstname":","Lastname":"","Title":"","Phone":"","Email":"",} } + + Multiple paramaters above can be forged and modified for existing UserID accounts. The Firstname and Lastname parameters are vulnerable to a stored XSS attack which can be used to inject malicious scripts into existing user accounts to steal sessions or account data, or to redirect users to malicious pages. + + 3. GetUser API endpoint - Allows the ability to view the user account details of any arbitrary user by enumerating their UserID. + HTTP Request PoC: + POST /WS/AjaxWS.asmx/GetUser + + {"userID":XXXX } + + The UserID paramter can be forged to enumerate over existing userID's in order to return their account details such as full name, username, user permissions, account role, email, and password question. + +Tested on: Windows + +CVE: CVE-2020-14944 + +Reference: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-14944 \ No newline at end of file diff --git a/files_exploits.csv b/files_exploits.csv index 6c92803a7..802d943be 100644 --- a/files_exploits.csv +++ b/files_exploits.csv @@ -42903,3 +42903,5 @@ id,file,description,date,author,type,platform,port 48647,exploits/php/webapps/48647.txt,"Online Shopping Portal 3.1 - 'email' SQL Injection",2020-07-07,gh1mau,webapps,php, 48648,exploits/php/webapps/48648.txt,"Joomla! J2 JOBS 1.3.0 - 'sortby' Authenticated SQL Injection",2020-07-07,"Mehmet Kelepçe",webapps,php, 48649,exploits/multiple/webapps/48649.txt,"BSA Radar 1.6.7234.24750 - Authenticated Privilege Escalation",2020-07-07,"William Summerhill",webapps,multiple, +48652,exploits/hardware/webapps/48652.txt,"SuperMicro IPMI 03.40 - Cross-Site Request Forgery (Add Admin)",2020-07-08,"Metin Yunus Kandemir",webapps,hardware, +48653,exploits/hardware/webapps/48653.txt,"BSA Radar 1.6.7234.24750 - Cross-Site Request Forgery (Change Password)",2020-07-08,"William Summerhill",webapps,hardware,