Facebook Google Plus Twitter LinkedIn YouTube RSS Menu Search Resource - BlogResource - WebinarResource - ReportResource - Eventicons_066 icons_067icons_068icons_069icons_070

Keysight Technologies Sensor Management Server Multiple RCE Vulnerabilities

Critical

Synopsis

CVE-2022-38129 - addLicenseFile Path Traversal RCE (CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H)

A path traversal vulnerability exists in the com.keysight.tentacle.licensing.LicenseManager.addLicenseFile() method in the Keysight Sensor Management Server (SMS). This allows an unauthenticated remote attacker to upload arbitrary files to the SMS host.  

The attacker can remotely invoke the addLicenseFile() method via URL endpoint /server/service/licensingServiceHttpInvoker. The method takes in the license file name as input data and the file is supposed to be saved in <SMS_DIR>\licenses\, where <SMS_DIR> is the SMS installation directory.

The method checks if the license file name contains a Windows file separator to ensure the file is saved in <SMS_DIR>\licenses\:
 
// com.keysight.tentacle.licensing.LicenseManager.addLicenseFile()
  public LicenseError addLicenseFile(LicenseDescription paramLicenseDescription) {
    if (paramLicenseDescription == null)
      return LicenseError.INVALID_FILENAME;
    String str = paramLicenseDescription.getFilename();
    if (str == null || str.length() == 0)
      return LicenseError.INVALID_FILENAME;
    if (str.contains(File.separator))
      return LicenseError.PATHNAME_NOT_ALLOWED;
    byte[] arrayOfByte = paramLicenseDescription.getLicense();
    if (arrayOfByte == null || arrayOfByte.length == 0)
      return LicenseError.INVALID_LICENSE_FILE;
    ByteArrayInputStream byteArrayInputStream = new ByteArrayInputStream(arrayOfByte);
    File file = new File("licenses/" + str);
    FileOutputStream fileOutputStream = null;
    LicenseError licenseError = LicenseError.UNKNOWN;
    BufferedOutputStream bufferedOutputStream = null;
    try {
      fileOutputStream = new FileOutputStream(file);
      bufferedOutputStream = new BufferedOutputStream(fileOutputStream);
      byte[] arrayOfByte1 = new byte[1024];
      int i = 0;
      while ((i = byteArrayInputStream.read(arrayOfByte1)) != -1)
        bufferedOutputStream.write(arrayOfByte1, 0, i);
      licenseError = LicenseError.OK;
    } catch (FileNotFoundException fileNotFoundException) {
      licenseError = LicenseError.FILE_WRITE_ERROR;
    } catch (IOException iOException) {
      licenseError = LicenseError.FILE_WRITE_ERROR;
    } finally {
      try {
        if (bufferedOutputStream != null)
          bufferedOutputStream.close();
        if (fileOutputStream != null)
          fileOutputStream.close();
      } catch (IOException iOException) {
        licenseError = LicenseError.FILE_WRITE_ERROR;
      }
    }
    return licenseError;
  }

However, the check can be bypassed with forward slashes (i.e., ../). The attacker can use path traversal in the license file name to upload an attacker-controlled file to any location on the SMS host. For example, the attacker can upload a reverse shell TCP payload, save it as <SMS_DIR>\ping.exe, and then invoke com.keysight.tentacle.config.SensorConfigurer.sensorPing() (via /server/service/sensorConfigServiceHttpInvoker) to execute the payload, achieving unauthenticated RCE.

The sensorPing() method executes the attacker-supplied ping.exe instead of C:\Windows\System32\ping.exe because the current directory of the SMS process (KeysightSMS.exe) is <SMS_DIR>, and sensorPing() does not use an absolute path when calling ping.exe:

// com.keysight.tentacle.config.SensorConfigurer.sensorPing()
  public List<String> sensorPing(String paramString) {
    LinkedList<String> linkedList = new LinkedList();
    String str = "";
    try {
      Process process = Runtime.getRuntime().exec("ping " + paramString);
<...snip...>


CVE-2022-38130 - smsRestoreDatabaseZip UNC Path RCE (CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H)

The com.keysight.tentacle.config.ResourceManager.smsRestoreDatabaseZip() method is used to restore the HSQLDB database used in SMS.  It takes the path of the zipped database file as the single parameter. An unauthenticated, remote attacker can specify an UNC path for the database file (i.e., \\<attacker-host>\sms\<attacker-db.zip>), effectively controlling the content of the database to be restored.

An HSQLDB database includes a script file containing SQL statements to be executed to make up the database. During method execution, the SQL statements in the script file are executed. The attacker can put arbitrary SQL statements in the script to cause them to be executed.

For example, since HSQLDB can call Java static methods, the attacker can use the following SQL statements to load an attacker-controlled DLL into the process executing the script file, achieving unauthenticated RCE.
 

Solution

Apply the vendor-supplied patch.

Disclosure Timeline

July 4, 2022 - Tenable discloses issues to vendor.
July 5, 2022 - Vendor acknowledges disclosure.
August 10, 2022 - Tenable notices issues have been patched and proceeds with public disclosure.

All information within TRA advisories is provided “as is”, without warranty of any kind, including the implied warranties of merchantability and fitness for a particular purpose, and with no guarantee of completeness, accuracy, or timeliness. Individuals and organizations are responsible for assessing the impact of any actual or potential security vulnerability.

Tenable takes product security very seriously. If you believe you have found a vulnerability in one of our products, we ask that you please work with us to quickly resolve it in order to protect customers. Tenable believes in responding quickly to such reports, maintaining communication with researchers, and providing a solution in short order.

For more details on submitting vulnerability information, please see our Vulnerability Reporting Guidelines page.

If you have questions or corrections about this advisory, please email [email protected]

Risk Information

Tenable Advisory ID
TRA-2022-28
CVSSv3 Base / Temporal Score
9.8 / 9.1
CVSSv3 Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
Affected Products
Keysight Technologies Sensor Management Server v2.4.0
Risk Factor
Critical

Advisory Timeline

August 10, 2022 - Initial release.
tenable.io

Enjoy full access to a modern, cloud-based vulnerability management platform that enables you to see and track all of your assets with unmatched accuracy.

Your Tenable.io Vulnerability Management trial also includes Tenable Lumin, Tenable.io Web Application Scanning and Tenable.cs Cloud Security.

tenable.io BUY

Enjoy full access to a modern, cloud-based vulnerability management platform that enables you to see and track all of your assets with unmatched accuracy. Purchase your annual subscription today.

65 assets

Choose Your Subscription Option:

Buy Now

Try Nessus Professional Free

FREE FOR 7 DAYS

Nessus® is the most comprehensive vulnerability scanner on the market today.

NEW - Nessus Expert Now Available

Nessus Expert adds even more features, including external attack surface scanning, and the ability to add domains and scan cloud infrastructure. Click here to Try Nessus Expert.

Fill out the form below to continue with a Nessus Professional Trial.

Buy Nessus Professional

Nessus® is the most comprehensive vulnerability scanner on the market today. Nessus Professional will help automate the vulnerability scanning process, save time in your compliance cycles and allow you to engage your IT team.

Buy a multi-year license and save. Add Advanced Support for access to phone, community and chat support 24 hours a day, 365 days a year.

Select Your License

Buy a multi-year license and save.

Add Support and Training

Tenable.io

Enjoy full access to a modern, cloud-based vulnerability management platform that enables you to see and track all of your assets with unmatched accuracy.

Your Tenable.io Vulnerability Management trial also includes Tenable Lumin, Tenable.io Web Application Scanning and Tenable.cs Cloud Security.

Tenable.io BUY

Enjoy full access to a modern, cloud-based vulnerability management platform that enables you to see and track all of your assets with unmatched accuracy. Purchase your annual subscription today.

65 assets

Choose Your Subscription Option:

Buy Now

Try Tenable.io Web Application Scanning

Enjoy full access to our latest web application scanning offering designed for modern applications as part of the Tenable.io platform. Safely scan your entire online portfolio for vulnerabilities with a high degree of accuracy without heavy manual effort or disruption to critical web applications. Sign up now.

Your Tenable Web Application Scanning trial also includes Tenable.io Vulnerability Management, Tenable Lumin and Tenable.cs Cloud Security.

Buy Tenable.io Web Application Scanning

Enjoy full access to a modern, cloud-based vulnerability management platform that enables you to see and track all of your assets with unmatched accuracy. Purchase your annual subscription today.

5 FQDNs

$3,578

Buy Now

Try Tenable.io Container Security

Enjoy full access to the only container security offering integrated into a vulnerability management platform. Monitor container images for vulnerabilities, malware and policy violations. Integrate with continuous integration and continuous deployment (CI/CD) systems to support DevOps practices, strengthen security and support enterprise policy compliance.

Buy Tenable.io Container Security

Tenable.io Container Security seamlessly and securely enables DevOps processes by providing visibility into the security of container images – including vulnerabilities, malware and policy violations – through integration with the build process.

Try Tenable Lumin

Visualize and explore your Cyber Exposure, track risk reduction over time and benchmark against your peers with Tenable Lumin.

Your Tenable Lumin trial also includes Tenable.io Vulnerability Management, Tenable.io Web Application Scanning and Tenable.cs Cloud Security.

Buy Tenable Lumin

Contact a Sales Representative to see how Lumin can help you gain insight across your entire organization and manage cyber risk.

Try Tenable.cs

Enjoy full access to detect and fix cloud infrastructure misconfigurations and view runtime vulnerabilities. Sign up for your free trial now. To learn more about the trial process click here.

Your Tenable.cs Cloud Security trial also includes Tenable.io Vulnerability Management, Tenable Lumin and Tenable.io Web Application Scanning.

Contact a Sales Rep to Buy Tenable.cs

Contact a Sales Representative to learn more about Tenable.cs Cloud Security and see how easy it is to onboard your cloud accounts and get visibility into both cloud misconfigurations and vulnerabilities within minutes.

Try Nessus Expert Free

FREE FOR 7 DAYS

Built for the modern attack surface, Nessus Expert enables you to see more and protect your organization from vulnerabilities from IT to the cloud.

Already have Nessus Professional?
Upgrade to Nessus Expert free for 7 days.

Buy Nessus Expert

Built for the modern attack surface, Nessus Expert enables you to see more and protect your organization from vulnerabilities from IT to the cloud.

Select Your License

Buy a multi-year license and save more.

Add Support and Training