/
githubmirror
/
metasploit-framework
Обзор
Документация
Войти
/
githubmirror
/
metasploit-framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
modules/auxiliary/scanner/http/trace.rb
60 строк
2 KB
g0t mi1k
#{rhost}:#{rport} -> #{Rex::Socket.to_authority(rhost, rport)}
19 май 2026, 18:12
19 май 2026, 18:12
0745cc6
Код
Авторство
О чём код?
## # 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("#{Rex::Socket.to_authority(rhost, rport)} did not reply to our request") return end if res.body.to_s.index('/<script>alert(1337)</script>') print_good("#{Rex::Socket.to_authority(rhost, rport)} is vulnerable to Cross-Site Tracing") report_vuln( :host => rhost, :port => rport, :proto => 'tcp', :sname => (ssl ? 'https' : 'http'), :name => 'HTTP TRACE Method Enabled (Cross-Site Tracing)', :refs => references, :info => "Vulnerable to Cross-Site Tracing" ) else vprint_error("#{Rex::Socket.to_authority(rhost, rport)} returned #{res.code} #{res.message}") end rescue ::Rex::ConnectionRefused, ::Rex::HostUnreachable, ::Rex::ConnectionTimeout rescue ::Timeout::Error, ::Errno::EPIPE end end end