Bugtraq mailing list archives
Invision Gallery 2.0.6 ( SQL Injection )
From: o.y.6 () hotmail com
Date: 2 May 2006 14:35:56 -0000
[left]
Invision Gallery 2.0.6 ( SQL Injection )
File :- modules/gallery/post.php
Line :- 943
Bug By :- Devil-00
* Welcome Back ( Security4arab ) *
Arabian Security WebSites
www.s4a.cc
www.securitygurus.net
[php]
$this->ipsclass->DB->simple_construct( array( 'select' => 'COUNT(*) AS total', 'from' => 'gallery_images', 'where' =>
"album_id={$this->ipsclass->input['album']}" ) );
[/php]
$this->ipsclass->input['album'] = Unfilter Input
Exploit :-
Post New Image Then Edit POST Requset By HTTPLiveHeader
album=[SQL]
Fix :-
[php]
$this->ipsclass->DB->simple_construct( array( 'select' => 'COUNT(*) AS total', 'from' => 'gallery_images', 'where' =>
"album_id={".intval($this->ipsclass->input['album'])."}" ) );
[/php]
[/left]
Current thread:
- Invision Gallery 2.0.6 ( SQL Injection ) o . y . 6 (May 02)
- <Possible follow-ups>
- Re: Invision Gallery 2.0.6 ( SQL Injection ) mattmecham (May 04)
- Re: Re: Invision Gallery 2.0.6 ( SQL Injection ) an0n (May 06)
