Advertisement
Ribang

Search For Exploit Via Exploit-DB

Feb 2nd, 2018
959
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.49 KB | None | 0 0
  1. <?
  2.         /* {
  3.          * Exploit-DB Searcher :)
  4.          * Coded By xSecurity
  5.          * Homepage : sec4ever.com - is-sec.com
  6.          * email : b0x@hotmail.com
  7.          * Skype : b0x-sa
  8.          * Special Thanks To : Mr.Dm4r
  9.          * Greets 2 : Lov3rDNS - b0x - RAB3OUN - FoX HaCkEr - No-QRQR - DeeF - abolalh - DameneDz - r0kin - All Members :)
  10.          * }
  11.          */
  12.          @set_time_limit(0);
  13.          echo '
  14.         <form method="GET">
  15.         <title># Search For Exploits</title>
  16.         <body text="#FFFFFF" bgcolor="#000000">
  17.         <p align="center"><img src="http://www.exploit-db.com/wp-content/themes/exploit/images/exdb_logo2.png"></p>
  18.         <p align="left" dir="ltr"><b><font face="Tahoma" size="4">CMS Name :</font></b>
  19.         <input type="text" name="exploit" value="joomla">
  20.         <input type="submit" name="start" value="Search" /></p></form>';
  21.          # Style
  22.         echo '
  23.         <style>
  24.         input
  25.        {
  26.        border: 1px solid #777777;
  27.        background: #6e9e2d;
  28.        color: white;
  29.        font: bold 11px "Trebuchet MS";
  30.        padding: 4px;
  31.        }
  32.         </style>
  33.         ';
  34.          $search = $_GET['exploit'];
  35.          $page1=(isset($_GET[p]) and $_GET[p]>=1)?intval($_GET[p]):1;
  36.          if($_GET['exploit']) {
  37.          $connect = @file_get_contents("http://www.exploit-db.com/search/?action=search&filter_page={$page1}&filter_description=$search");
  38.          preg_match_all('#<td class="list_explot_description">(.*?)</td>#si',$connect,$exploit);
  39.          foreach($exploit[1] as $exploits) {
  40.          echo $exploits."<br>";
  41.         }
  42.         $next = $page1+1;
  43.         $back = (($page1-1)==0)?1:$page1-1;
  44.         echo "<p align='left' dir='ltr'><font face='Tahoma' size='4'>
  45.        <a href='?exploit={$search}&p={$back}' style='text-decoration: none'>Back</a> |..|
  46.        <a href='?exploit={$search}&p={$next}' style='text-decoration: none'>NexT</a></font></p>";
  47.         }
  48.         echo '<p align="left" dir="ltr"><font face="Verdana" size="1">
  49.        +--------------------------------------------------------------------------+</font></p>
  50.        <p align="left" dir="ltr"><font face="Verdana" size="1"># By : xSecurity | b0x@hotmail.com | Sec4ever.CoM - is-Sec.CoM</font></p>
  51.        <p align="left" dir="ltr"><font face="Verdana" size="1"># Greets 2 :&nbsp;
  52.        Mr.Dm4r - Lov3rDNS - b0x - RAB3OUN - FoX HaCkEr - No-QRQR - DeeF - abolalh -
  53.        DameneDz - r0kin - All Sec4ever &amp; Is-Sec Members</font></p>';
  54. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement