Advertisement
Ribang

Checking joomla 1.6 - 1.7 Registration

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