P_H_P

Bypass Adf.ly

Dec 1st, 2012
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 6.01 KB | None | 0 0
  1. <?php
  2. /*
  3. adf.ly bypass v.1.0
  4. by.wikielf
  5. */
  6. $wikie = $_POST['uri'];
  7. if($wikie == "Masukin Url Adf.ly Nya disini Bos ;) Pisahkan link dengan enter jika ingin Bulk Cek Link nya Okey!"){ } else {
  8. define('REQUEST', "GET %s HTTP/1.1\r\n".
  9.                   "Host: %s\r\n".
  10.                   "Referer: %s\r\n".
  11.                   "Connection: Close\r\n\r\n");
  12. $data = "";
  13. $c =  explode("\n", trim($_REQUEST['uri']));
  14. $result .= "<br/><table width='700' border='0' cellpadding='5'><tr>
  15.    <td width='7%' bgcolor='#F2F2F2'><div align='center'><strong>Adf.ly</strong></div></td>
  16.    <td width='8%' bgcolor='#F2F2F2'><div align='center'><strong>Bypass</strong></div></td>
  17.    </tr>";
  18.     foreach ($c as $ury) {
  19.         $ury = trim($ury);
  20.         if ($ury != "") {
  21.         $parse = parse_url($ury);
  22.             $fp = @fsockopen($parse['host'], 80, $error_no, $error_msg, 15);
  23. if(!$fp)
  24.     {
  25.     }
  26.     else
  27.     {
  28.         @fwrite($fp, sprintf(REQUEST, $parse['path'], $parse['host'], $parse['schema'].$parse['host'].$parse['path']));
  29.         while(!feof($fp))
  30.             {
  31.                 $data .= @fgets($fp);
  32.             }
  33.         $data = explode("\r\n\r\n", $data);
  34.         preg_match("/var\ url\ =\ \'(.+?)\'\;/", $data[1], $value);
  35.             $parts = explode('/', $value[1]);
  36.             $last = end($parts);
  37.             $deco = base64_decode($last);
  38.  
  39.         }
  40.             $result .= "<tr><td width='22%'>" . $ury ."</td>";
  41.             $result .= "<td width='63%'><a href='".$deco."'>".$deco."</a></td></tr>";
  42.         }
  43.        
  44.     }
  45.     $result .= "</table>";
  46. }
  47.    
  48.        
  49. ?>
  50. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  51. <html xmlns="http://www.w3.org/1999/xhtml">
  52. <head>
  53. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  54. <title>Bypass Adf.ly</title>
  55. <style type="text/css">
  56. <!--
  57. body {
  58.     background-color: #333333;
  59. }
  60. body,td,th {
  61.     font-family: Verdana, Arial, Helvetica, sans-serif;
  62.     font-size: 12px;
  63. }
  64. #wrap{
  65.     width:700px;
  66.     margin:0 auto;
  67.     background:#FFFFFF;
  68.     padding:10px;
  69.     margin-top:20px;    
  70.     -moz-box-shadow: 0px 0px 5px #000000;
  71.     -webkit-box-shadow: 0px 0px 5px #000000;
  72.     box-shadow: 0px 0px 5px #000000;
  73.     border:dashed 0px #000000;
  74.     -moz-border-radius-topleft: 5px;
  75.     -moz-border-radius-topright:5px;
  76.     -moz-border-radius-bottomleft:5px;
  77.     -moz-border-radius-bottomright:5px;
  78.     -webkit-border-top-left-radius:5px;
  79.     -webkit-border-top-right-radius:5px;
  80.     -webkit-border-bottom-left-radius:5px;
  81.     -webkit-border-bottom-right-radius:5px;
  82.     border-top-left-radius:5px;
  83.     border-top-right-radius:5px;
  84.     border-bottom-left-radius:5px;
  85.     border-bottom-right-radius:5px;
  86. }
  87. #wrap td:hover{background:#CCCCCC;}
  88. .searchform {
  89.     display: inline-block;
  90.     zoom: 1; /* ie7 hack for display:inline-block */
  91.     *display: inline;
  92.     border: solid 1px #d2d2d2;
  93.     padding: 3px 5px;
  94.     -webkit-box-shadow: 0 1px 0px rgba(0,0,0,.1);
  95.     -moz-box-shadow: 0 1px 0px rgba(0,0,0,.1);
  96.     box-shadow: 0 1px 0px rgba(0,0,0,.1);
  97.  
  98.     background: #f1f1f1;
  99.     background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ededed));
  100.     background: -moz-linear-gradient(top,  #fff,  #ededed);
  101.     filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed'); /* ie7 */
  102.     -ms-filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed'); /* ie8 */
  103. }
  104. .searchform input {
  105.     font: normal 12px/100% Arial, Helvetica, sans-serif;
  106. }
  107. .searchform .searchfield {
  108.     background: #fff;
  109.     padding: 6px 6px 6px 8px;
  110.     width: 202px;
  111.     border: solid 1px #bcbbbb;
  112.     outline: none;
  113.     -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.2);
  114.     -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.2);
  115.     box-shadow: inset 0 1px 2px rgba(0,0,0,.2);
  116.     margin-top: 2px;
  117.     margin-bottom: 2px;
  118.     height: 138px;
  119.     margin-left: 0px;
  120.     margin-right: 0px;
  121.     width: 659px;
  122. }
  123. .searchform .searchbutton {
  124.     color: #fff;
  125.     border: solid 1px #494949;
  126.     font-size: 16px;
  127.     text-shadow: 0 1px 1px rgba(0,0,0,.6);
  128.     background: #5f5f5f;
  129.     background: -webkit-gradient(linear, left top, left bottom, from(#9e9e9e), to(#454545));
  130.     background: -moz-linear-gradient(top,  #9e9e9e,  #454545);
  131.     filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#9e9e9e', endColorstr='#454545'); /* ie7 */
  132.     -ms-filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#9e9e9e', endColorstr='#454545'); /* ie8 */
  133.     width: 98%;
  134.     height: 30px;
  135.     cursor: pointer;
  136. }
  137. a:link {
  138.     color: #336699;
  139.     text-decoration: none;
  140. }
  141. a:visited {
  142.     color: #336699;
  143.     text-decoration: none;
  144. }
  145. a:hover {
  146.     color: #3366CC;
  147.     text-decoration: none;
  148. }
  149. a:active {
  150.     color: #336699;
  151.     text-decoration: none;
  152. }
  153. #logo {
  154.     font-size: 66px;
  155.     font-family: "Times New Roman", Times, serif;
  156.     font-weight: bold;
  157.     margin-top: 50px;
  158.     text-shadow: 0px 0px 5px black;
  159.     color: red;
  160.     }
  161. -->
  162. </style>
  163. </head>
  164.  
  165. <body>
  166. <div id="logo" align="center"><a href="<?php $_SERVER['REQUEST_URI'];?>">Bypass Link Adf.ly</a></div>
  167. <div id="wrap">
  168. <center><form class="searchform" method="POST">
  169.     <textarea name="uri" class="searchfield" onfocus="if (this.value == 'Masukin Url Adf.ly Nya disini Bos ;) Pisahkan link dengan enter jika ingin Bulk Cek Link nya Okey!') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Masukin Url Adf.ly Nya disini Bos ;) Pisahkan link dengan enter jika ingin Bulk Cek Link nya Okey!';}" required="required">Masukin Url Adf.ly Nya disini Bos ;) Pisahkan link dengan enter jika ingin Bulk Cek Link nya Okey!</textarea>
  170.     <input class="searchbutton" type="submit" value="Bypass" />
  171. </form></center>
  172. <?php
  173. if ($wikie){
  174.     echo $result;
  175.     }
  176. ?>
  177. </div>
  178. <div align="center" style="margin-top:10px;">Copyright @ <a href="http://www.republikseo.net">RepublikSEO.Net</a></div>
  179. </body>
  180. </html>
Add Comment
Please, Sign In to add comment