Jump to content
albertynos

Views Increaser Bot[PHP]

Recommended Posts

Salvati fisierul cu extensia .php si uploadati-o pe hostingul vostru apoi accesati fisierul php.

Este important ca serverul vostru sa suporte PHP cURL.

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">     <html xmlns="http://www.w3.org/1999/xhtml">     <head>        <title>Views Increaser</title>                    <style type="text/css">                   body           {              color: #F60;              text-shadow: 2px 1px #333;              background-color: #000;              font-family: Arial, Helvetica, sans-serif;           }                     input           {              font-family: Arial, Helvetica, sans-serif;           }                     .Button           {              padding: 5px 10px;              background: #333;              border: solid #101010 2px;              color: #F60;              cursor: pointer;              font-weight: bold;              border-radius: 5px;              -moz-border-radius: 5px;              -webkit-border-radius: 5px;              text-shadow: 1px 1px #000;           }                     .Input           {              border: solid #101010 1px;              color: white;              font-weight: bold;              padding: 3px;              background-color: #252525;           }         </style>     </head>     <body>     <div align="center">     <pre>     ____   ____.__                      .___                                                             \   \ /   /|__| ______  _  ________ |   | ____   ___________   ____ _____    ______ ___________      \   Y   / |  |/ __ \ \/ \/ /  ___/ |   |/    \_/ ___\_  __ \_/ __ \\__  \  /  ___// __ \_  __ \       \     /  |  \  ___/\     /\___ \  |   |   |  \  \___|  | \/\  ___/ / __ \_\___ \\  ___/|  | \/        \___/   |__|\___  >\/\_//____  > |___|___|  /\___  >__|    \___  >____  /____  >\___  >__|                          \/           \/           \/     \/            \/     \/     \/     \/                                                                         </pre>     <form method="POST" action="">     Enter URL :     <input type="text" name="url" class="Input" value="<?php if(isset($_POST['url'])){ echo htmlentities($_POST['url']); }     else { echo 'http://example.com';}?>"/>     Enter No. Of Views :     <input type="text" name="views" class="Input" value="<?php if(isset($_POST['views'])){     echo htmlentities($_POST['views']); } else { echo 10;}?>"/>     <input type="submit" name="submit" class="Button" value="Increase Views" />     </form>     <?php     ## Views Increaser Bot     if(isset($_POST['url'],$_POST['views'],$_POST['submit']) &&         filter_var($_POST['url'], FILTER_VALIDATE_URL) && is_numeric($_POST['views'])        && $_POST['views'] > 0)     {         set_time_limit(0);         $views = $_POST['views'];         $link = $_POST['url'];         for($i=0 ; $i < $views ; $i++)         {              $ch[$i] = curl_init($link);              $agent= 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0';              curl_setopt($ch[$i], CURLOPT_SSL_VERIFYPEER, false);              curl_setopt($ch[$i], CURLOPT_VERBOSE, true);              curl_setopt($ch[$i], CURLOPT_RETURNTRANSFER, true);              curl_setopt($ch[$i], CURLOPT_USERAGENT, $agent);         }         $mh = curl_multi_init();                     for($i=0 ; $i < $views ; $i++)         {             curl_multi_add_handle($mh,$ch[$i]);         }         $running = NULL;         do         {             curl_multi_exec($mh,$running);         }while($running);         for($i = 0 ; $i < $views ; $i++)         {             curl_multi_remove_handle($mh,$ch[$i]);             curl_close($ch[$i]);           }         curl_multi_close($mh);         echo '<span style="color: #F60;">DONE!!! Check the views now.</span>';     }     ?>     <>     </body>     </html>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...