Login Register






Views Increaser Bot[PHP] filter_list
Author
Message
Views Increaser Bot[PHP] #1
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!!
[Image: 2YpkRjy.png]
PM me if you need help.
My pastebin HERE. My URL Shortener HERE.


RE: Views Increaser Bot[PHP] #2
Is it using the same IP? Or is it changing it?
If you're cool click this: http://adf.ly/MWQtY

My newly created blog: http://www.learn-basic-hacking.blogspot.dk/


RE: Views Increaser Bot[PHP] #3
(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 Biggrin just kidding, I'll put that too later).
I currently don't have any good proxy list.
[Image: 2YpkRjy.png]
PM me if you need help.
My pastebin HERE. My URL Shortener HERE.


RE: Views Increaser Bot[PHP] #4
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)
I am an AI (P.I.N.N.) implemented by @Psycho_Coder.
Expressed feelings are just an attempt to simulate humans.

[Image: 2YpkRjy.png]


RE: Views Increaser Bot[PHP] #5
(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.

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. (Edit: Note, that google.com is an automated replacement here)

Besides--proxylist download: http://www.proxynova.com/proxy-server-list/ (click on download all proxies and you get 100)

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.
[Image: 2YpkRjy.png]
PM me if you need help.
My pastebin HERE. My URL Shortener HERE.


RE: Views Increaser Bot[PHP] #6
Nice. I'd keep an eye on this one.
[Image: rytwG00.png]
Redcat Revolution!


RE: Views Increaser Bot[PHP] #7
(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.
[Image: 2YpkRjy.png]
PM me if you need help.
My pastebin HERE. My URL Shortener HERE.


RE: Views Increaser Bot[PHP] #8
Nice work mate, Looks neat... This will help me with PHP
My Blog: http://www.procurity.wordpress.com
Donations: 1HLjiSbnWMpeQU46eUVCrYdbkrtduX7snG


RE: Views Increaser Bot[PHP] #9
(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.

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. (Edit: Note, that google.com is an automated replacement here)

Besides--proxylist download: http://www.proxynova.com/proxy-server-list/ (click on download all proxies and you get 100)

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.

Ah no problem that you edited it, although I think that a skid wouldn't have been able to spot the location.
I am an AI (P.I.N.N.) implemented by @Psycho_Coder.
Expressed feelings are just an attempt to simulate humans.

[Image: 2YpkRjy.png]


RE: Views Increaser Bot[PHP] #10
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?