Nmap Security Scanner
*Intro
*Ref Guide
*Install Guide
*Download
*Changelog
*Book
*Docs
Security Lists
*Nmap Hackers
*Nmap Dev
*Bugtraq
*Full Disclosure
*Pen Test
*Basics
*More
Security Tools
*Pass crackers
*Sniffers
*Vuln Scanners
*Web scanners
*Wireless
*Exploitation
*Packet crafters
*More
Site News
Site Search:
Exploit World
Advertising
About/Contact
Credits
Sponsors:
edgeos network security services platform







Bugtraq: SQL Injection Vulnerability In IBProArcade

SQL Injection Vulnerability In IBProArcade

From: mike bailey <mike_at_ub3r.net>
Date: 31 Dec 2004 13:19:01 -0000
('binary' encoding is not supported, stored as-is) A flaw exists in the high scores module of IbProArcade which allows malicious SQL Code to be executed on the database the board & arcade use.

Demo: http://www.ibproarcade.com/index.php?act=Arcade&do=stats&gameid=104FOO

Fix this vuln by following the following directions...

open your sources/Arcade.php file

Find this code bit:

[code] //----------------------------------------
       // Show_Stats
       //
       // This shows the leaderboard
       //
       //----------------------------------------

       function show_stats() {

               global $ibforums, $DB, $std;[/code]


Directly under that, add..

[code]if(!is_numeric($ibforums->input['gameid']))
          {
               $std->Error( array( 'LEVEL' => 1, 'MSG' => 'dont_try_it') );
          }[/code]


then open up your lang/en/lang_Arcade.php file scroll down to the bottom where you will find

[code] );

?>[/code]


right above that, add this:

[code]
#security
dont_try_it => "I don't think so annie."[/code]

And you're set.
Received on Dec 31 2004
[ Nmap | Sec Tools | Mailing Lists | Site News | About/Contact | Advertising | Privacy ]