![]() |
|
Views Increaser Bot[PHP] - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Coding (https://sinister.li/Forum-Coding) +--- Forum: PHP (https://sinister.li/Forum-PHP) +--- Thread: Views Increaser Bot[PHP] (/Thread-Views-Increaser-Bot-PHP) Pages:
1
2
|
Views Increaser Bot[PHP] - The Alchemist - 01-20-2013 Hello Hack Community, So, this is a views increaser bot coded by me in PHP. I've tested it in several forum scripts and its working even in the latest version of myBB(even in the one that Hack Community is using). Now, you might be thinking of using this views increaser bot to increase the number of views of your thread in Hack Community. But you're wrong, I've designed this bot in such a way that it won't work for some sites. I don't guarantee it to work for every site, as nowadays, sites have extra AJAX protection against all these things. Save the file with a .php extension and upload it to your hosting account or your localhost and then, surf the php file. Its important that your server supports PHP cURL. Here's the code : PHP Code: <!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 / | |/ __ \ \/ \/ / ___/ | |/ \_/ ___\_ __ \_/ __ \\__ \ / ___// __ \_ __ \
\ / | \ ___/\ /\___ \ | | | \ \___| | \/\ ___/ / __ \_\___ \\ ___/| | \/
\___/ |__|\___ >\/\_//____ > |___|___| /\___ >__| \___ >____ /____ >\___ >__|
\/ \/ \/ \/ \/ \/ \/ \/
Coded By The Alchemist www.HackCommunity.com
</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 Coded By The Alchemist
## http://www.hackcommunity.com
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'];
$str = base64_decode('aWYoc3Ryc3RyKCRsaW5rLCJoYWNrY29tb
XVuaXR5LmNvbSIpIHx8IHN0cnN0cigkbGluaywiaGFja2ZvcnVtc
y5uZXQiKQ0KICAgICB8fCBzdHJzdHIoJGxpbmssImV2aWx6b25lL
m9yZyIpKQ0Kew0KICAgIGVjaG8gIk5vdCBhbGxvd2VkIGluIHRoa
XMgc2l0ZSI7DQogICAgZXhpdCgpOw0KfQ==');
eval($str);
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>';
}
?>
</div>
</body>
</html>
Please give feedback!! RE: Views Increaser Bot[PHP] - Asuna_mybb_import7736 - 01-20-2013 Is it using the same IP? Or is it changing it? RE: Views Increaser Bot[PHP] - The Alchemist - 01-20-2013 (01-20-2013, 01:18 PM)drake8 Wrote: Is it using the same IP? Or is it changing it?I haven't put proxy feature in this. I can put that too if you want(afterall you're the admin's wife just kidding, I'll put that too later).I currently don't have any good proxy list. RE: Views Increaser Bot[PHP] - Deque - 01-20-2013 Ah nice, you made it. I would be careful without proxies though. Some sites might get the idea to block you. The protection mechanism is a nice idea. However, everyone who can code, is able to see where you did this and delete it. But it will hold back skids to use this tool for these sites. Besides--proxylist download: http://www.proxynova.com/proxy-server-list/ (click on download all proxies and you get 100) RE: Views Increaser Bot[PHP] - The Alchemist - 01-20-2013 (01-20-2013, 03:25 PM)Deque Wrote: Ah nice, you made it. I would be careful without proxies though. Some sites might get the idea to block you. Thanks for the feedback. Well, I kept the protection for tackling real skids. And since you're not a skid, and you can code this too, you are understanding. I'm sorry to have changed you reply post(you know what I've removed). And thanks for the proxy list too. Next version of this will have proxy support. Feels good to hear positive feedback from you. RE: Views Increaser Bot[PHP] - Coder-san - 01-20-2013 Nice. I'd keep an eye on this one. RE: Views Increaser Bot[PHP] - The Alchemist - 01-20-2013 (01-20-2013, 05:52 PM)Coder-san Wrote: Nice. I'd keep an eye on this one.Nice to hear from you. I'm thinking of releasing another version of this that'll be safer than this cause it'll have proxy support. RE: Views Increaser Bot[PHP] - Ex094 - 01-23-2013 Nice work mate, Looks neat... This will help me with PHP RE: Views Increaser Bot[PHP] - Deque - 01-23-2013 (01-20-2013, 03:33 PM)The Alchemist Wrote:(01-20-2013, 03:25 PM)Deque Wrote: Ah nice, you made it. I would be careful without proxies though. Some sites might get the idea to block you. Ah no problem that you edited it, although I think that a skid wouldn't have been able to spot the location. RE: Views Increaser Bot[PHP] - The Real Slim Shady - 01-23-2013 Okay, i think ive missed something. To what end does increasing a thread view count matter? It doesnt increase the visibility of the post, or the rating? or anything else afaik. I might see some use for a script like this in other instances, where views do affect visibility, or badly coded contests, etc. But youve deliberately tried to disable it on HackCommunity which leads me to believe you must have some reason for believing there is some reason people would want to use it here? to what end? |