vendor:
AdaptBB
by:
Salvatore 'drosophila' Fresta
6.5
CVSS
MEDIUM
Multiple Blind SQL Injection, Dynamic Code Execution and Arbitrary File Upload
89, 94, 264
CWE
Product Name: AdaptBB
Affected Version From: 1.0 Beta
Affected Version To: 1.0 Beta
Patch Exists: YES
Related CWE: N/A
CPE: a:adaptbb:adaptbb:1.0_beta
Metasploit:
N/A
Other Scripts:
N/A
Tags: N/A
CVSS Metrics: N/A
Nuclei References:
N/A
Nuclei Metadata: N/A
Platforms Tested: N/A
2009
Multiple Blind SQL Injection, Dynamic Code Execution and Arbitrary File Upload in AdaptBB 1.0 Beta
This bug allows a guest to execute arbitrary SQL queries. This bug also allows a guest to execute arbitrary php code. This bug allows a registered user to upload arbitrary files and to execute them from inc/attachments directory.
Mitigation:
The bug can be fixed by adding the following code to the affected files: if (get_magic_quotes_gpc()) {$_GET = array_map('stripslashes', $_GET);$_POST = array_map('stripslashes', $_POST);$_COOKIE = array_map('stripslashes', $_COOKIE);}