Advertisement
Muhammad_Bilal

Checking joomla 1.6 - 1.7 Registration Exploit

Feb 7th, 2014
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.73 KB | None | 0 0
  1. __  __      _       _ _                    ___                  
  2. \ \/ /_ __ | | ___ (_) |_ ___ _ __ ___    / __\ __ _____      __
  3.  \  /| '_ \| |/ _ \| | __/ _ \ '__/ __|  / / | '__/ _ \ \ /\ / /
  4.  /  \| |_) | | (_) | | ||  __/ |  \__ \ / /__| | |  __/\ V  V /
  5. /_/\_\ .__/|_|\___/|_|\__\___|_|  |___/ \____/_|  \___| \_/\_/  
  6.      |_|    
  7.  
  8.  
  9. <?
  10.     # Checking joomla 1.6 - 1.7 Registration Exploit
  11.    
  12.     @set_time_limit(0);
  13.     echo "<form method='POST'>
  14.     <style>
  15.     textarea
  16.     {
  17.         font-size: 15px;
  18.         font-family: Tahoma;
  19.         color: #0078AA;
  20.         border: dashed 1pt #0078AA;
  21.     }
  22.     input
  23.     {
  24.         color: #0078AA;
  25.         border: dotted 1pt #0078AA;
  26.     }
  27.     </style>
  28.     <title>Checking joomla 1.6 - 1.7 Registration Exploit</title>
  29.     <body text='#808080' bgcolor='#FFFFFF'>
  30.     <p align='center' dir='ltr'><b><br>
  31.     <font face='Tahoma' size='7' color='#0078AA'>C</font><font face='Tahoma' size='5'>hecking</font><font face='Tahoma' size='7'>
  32.     <font color='#0078AA'>R</font></font><font face='Tahoma' size='5'>egistration</font><font face='Tahoma' size='7'>
  33.     <font color='#0078AA'>E</font></font><font face='Tahoma' size='5'>xploit</font></b></p><center>
  34.     <textarea name='sites' cols='50' rows='10'></textarea><br>
  35.     <input type='submit' name='scan' value='Scan Sites'><br>
  36.     </form>";
  37.    
  38.     if($_POST['scan'])
  39.         {
  40.     $site = explode("\r\n",$_POST['sites']);
  41.     foreach($site as $sites)
  42.     {
  43.         $curl = curl_init("{$sites}/index.php?option=com_users&view=registration");
  44.         curl_setopt($curl, CURLOPT_FAILONERROR, true);
  45.         curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
  46.         curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  47.         $result = curl_exec($curl);
  48.             if(eregi("jform_email2-lbl",$result))
  49.             {
  50.                 echo "<font face='Comic Sans MS'>
  51.                 <a href='{$sites}/index.php?option=com_users&view=registration' style='text-decoration: none'>{$sites}</a>
  52.                 <font color='green'>Infected</font></font><br>";
  53.             }
  54.             else
  55.             {
  56.                 echo "<font face='Comic Sans MS'>{$sites}
  57.                 <font color='red'>Not Infected</font></font><br>";
  58.             }
  59.     }
  60.         }
  61.     echo "<p dir='ltr' align='center'><font face='Verdana' size='2'>Coded By : <font color='#0078AA'>xSecurity</font> - Skype : <font color='#0078AA'>b0x-sa </font> <br>
  62.     <span lang='en-us'><b><a href='http://sec4ever.com/'>
  63.     <img border='0' src='http://www.sec4ever.com/home/sec4ever_2.0/images/statusicon/forum_new.png' width='60' height='65'></a><a href='http://is-sec.com/'><img src='http://is-sec.com/vb/images/Is/images/logo-is.png' width='132' height='69'></a></b></span><br>
  64.     4u : <font color='#0078AA'>Mr.Dm4r</font> - <font color='#0078AA'>Lov3rDNS</font> -&nbsp;<font color='#0078AA'>DamaneDz</font> -
  65.     <font color='#0078AA'>r0kin</font> - <font color='#0078AA'>b0x</font> -<font color='#0078AA'> FoX HaCkEr</font></font></p></body>";
  66. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement