Advertisement
Guest User

Checking Exploit Vbulletin 0 Day By Pscript

a guest
Oct 9th, 2013
365
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.91 KB | None | 0 0
  1. <?
  2.         # Checking Vbulletin Exploit
  3.        # ReCoded By : Pscript
  4.        # Just Script Kiddies :(
  5.        # Semoga Berguna :D
  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 Vbulletin Exploit</title>
  23.        <body text='#808080' bgcolor='BLACK'>
  24.        <p align='center' dir='ltr'><b><br>
  25.        <font face='Courier New' size='6' color='GREEN'>Checking Vbulletin 0 Day Exploit</font></b></p><center>
  26.        <textarea name='sites' cols='50' rows='10'></textarea><br>
  27.        <input type='submit' name='scan' value='Scan Sites'><br>
  28.        </form>";
  29.        
  30.         if($_POST['scan'])
  31.                 {
  32.         $site = explode("\r\n",$_POST['sites']);
  33.         foreach($site as $sites)
  34.         {
  35.                 $curl = curl_init("{$sites}/install/upgrade.php");
  36.                 curl_setopt($curl, CURLOPT_FAILONERROR, true);
  37.                 curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
  38.                 curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  39.                 $result = curl_exec($curl);
  40.                         if(eregi("vb_style_version",$result))
  41.                         {
  42.                                 echo "<font face='Comic Sans MS'>
  43.                                <a href='{$sites}/install/upgrade.php' style='text-decoration: none'>{$sites}</a>
  44.                                <font color='BLUE'>Good Job, This Site Infected !</font></font><br>";
  45.                         }
  46.                         else
  47.                         {
  48.                                 echo "<font face='Courier New'>{$sites}
  49.                                <font color='GREEN'>Not Infected Bro :(</font></font><br>";
  50.                         }
  51.         }
  52.                 }
  53.         echo "<p dir='ltr' align='center'><font face='Verdana' size='2'>ReCoded By Pscript</font> <br>
  54.        <span lang='en-us'><b><a href='http://lamers-team.biz/forum/'><img border='0' src='http://img850.imageshack.us/img850/8588/blfr.jpg' width='140' height='55'></a><a href='http://jkt48-cyber.org/'>
  55.        <img border='0' src='http://2.bp.blogspot.com/-YBcbhDGW8ns/UcILBZJG5CI/AAAAAAAAA2E/7vwGFS_sEgg/s1600/hackerjkt48.png' width='140' height='55'></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>
  56.        Greetz : <font color='RED'>xSecurity </font> - <font color='RED'>Sen Haxor</font> -&nbsp;<font color='RED'>./Akicha</font> -
  57.        <font color='GREEN'>Panda Dot ID</font> - <font color='GREEN'>Bebyyers404</font> -<font color='GREEN'> Sanja07</font></font></p></body>";
  58. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement