| Reporter | Title | Published | Views | Family All 25 |
|---|---|---|---|---|
| CVE-2005-3398 | 29 May 201815:50 | – | circl | |
| CVE-2005-3398 | 1 Nov 200511:00 | – | cve | |
| CVE-2005-3398 | 1 Nov 200511:00 | – | cvelist | |
| K15904: Multiple third-party application-server vulnerabilities | 21 Feb 202318:11 | – | f5 | |
| SOL15904 - Multiple third-party application-server vulnerabilities | 11 Dec 201400:00 | – | f5 | |
| HTTP Reverse Proxy Detection (Deprecated) | 2 Jul 200200:00 | – | nessus | |
| Solaris 10 (sparc) : 121308-20 (deprecated) | 7 Dec 200500:00 | – | nessus | |
| Solaris 10 (x86) : 121309-20 (deprecated) | 7 Dec 200500:00 | – | nessus | |
| Solaris 9 (sparc) : 116807-02 | 12 Jul 200400:00 | – | nessus | |
| Solaris 9 (x86) : 116808-02 | 12 Jul 200400:00 | – | nessus |
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
class MetasploitModule < Msf::Auxiliary
# Exploit mixins should be called first
include Msf::Exploit::Remote::HttpClient
include Msf::Auxiliary::WmapScanServer
# Scanner mixin should be near last
include Msf::Auxiliary::Scanner
def initialize
super(
'Name' => 'HTTP Cross-Site Tracing Detection',
'Description' => 'Checks if the host is vulnerable to Cross-Site Tracing (XST)',
'Author' =>
[
'Jay Turla <@shipcod3>' , #Cross-Site Tracing (XST) Checker
'CG' #HTTP TRACE Detection
],
'License' => MSF_LICENSE,
'References' =>
[
['CVE', '2005-3398'], # early case where this vector applied to a specific application.
['URL', 'https://owasp.org/www-community/attacks/Cross_Site_Tracing']
]
)
end
def run_host(target_host)
begin
res = send_request_raw({
'uri' => '/<script>alert(1337)</script>', #XST Payload
'method' => 'TRACE',
})
unless res
vprint_error("#{rhost}:#{rport} did not reply to our request")
return
end
if res.body.to_s.index('/<script>alert(1337)</script>')
print_good("#{rhost}:#{rport} is vulnerable to Cross-Site Tracing")
report_vuln(
:host => rhost,
:port => rport,
:proto => 'tcp',
:sname => (ssl ? 'https' : 'http'),
:info => "Vulnerable to Cross-Site Tracing",
)
else
vprint_error("#{rhost}:#{rport} returned #{res.code} #{res.message}")
end
rescue ::Rex::ConnectionRefused, ::Rex::HostUnreachable, ::Rex::ConnectionTimeout
rescue ::Timeout::Error, ::Errno::EPIPE
end
end
end
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