User Controls
Who wants to help Troll a Site?
-
2016-02-26 at 5:59 AM UTC
Never built a bot but this is what i could come up with, have not tested it yet and it quite possibly contains several errors. I'll have to test it's functionality tomorrow, unless Lanny or someone else who knows python decides to do so and improve my concept.
I'm going to make one out of Java and we can start spamming at the same time. -
2016-02-26 at 6:07 AM UTC
Also VPNs are not blocked like TOR.
I'm thinking about trying out that cyberghost you mentioned in your thread. Is it fairly straightforward? I'll troll these guys and drop some links to niggasin.space if I can figure it out. But how do you shut down their site? -
2016-02-26 at 9:22 AM UTC
I'm thinking about trying out that cyberghost you mentioned in your thread. Is it fairly straightforward? I'll troll these guys and drop some links to niggasin.space if I can figure it out. But how do you shut down their site?
Yes try cyberghost. As to how you can shutdown the site.
1. Find out somehow, their real IP(They are currently behind cloudflare), and hit it with a medium sized DDoS.
2. Post lots of cp, then screenshot your posts and send them to their host so that they may terminate the site for violation of ToS.
3. Find a vulnerability in the web application, in this case vBul, and drop their database, then dehash the admin credentials, log in and delete everything. (Already tried this btw could not find an SQL Injection vuln) However, if they have upload functionality like attachements you might be able to trick the system into accepting a PHP shell, then you just connect to it and you pretty much own the server. Or maybe, they have a subdomain like mail.computerforums.com that is much less secure because it's not usually available to the public, but i have a program that will bruteforce all sobdomains in a matter of minutes so that's no problem.
If we seriously want to damage them we could but it will take some effort.
This is all i can think of right now, also with enough determination and people we might be able to bully the admin into giving up, maybe try to dox him and we'll configure the spambots to post his dox in every single thread. -
2016-02-26 at 2:31 PM UTCSure I'm down.
-
2016-02-26 at 2:47 PM UTCA guy called BikerEcho and says he is from Denmark is the biggest dick
-
2016-02-26 at 2:48 PM UTC
Also…
http://www.computerforums.org/forums/social-lounge-off-topic/a-227757.html#post12173968
Haha they have not got wind yet that you are not very good at spelling.... -
2016-02-26 at 3:42 PM UTC
Maybe i will.
You probably won't because you're a pussy -
2016-02-26 at 3:43 PM UTC
A guy called BikerEcho and says he is from Denmark is the biggest dick
How is he a dick? -
2016-02-26 at 4:10 PM UTC
How is he a dick?
He was laughing at some of my posts and then when someone gave me a kick he called me 'Aggressive' and ''A bit of a dick'
I will have him know I am a total Dick -
2016-02-26 at 5:24 PM UTCCould not register while using Cyberghost
-
2016-02-26 at 5:44 PM UTCWhy not ping them to overload their sever? It'll only take a few thousand of you. Give or take.
-
2016-02-26 at 8:48 PM UTC
Never built a bot but this is what i could come up with, have not tested it yet and it quite possibly contains several errors. I'll have to test it's functionality tomorrow, unless Lanny or someone else who knows python decides to do so and improve my concept.
import os
import random
from BeautifulSoup import BeautifulSoup
from urlparse import urlparse
import mechanize
# Mechanize browser for form input
self = mechanize.Browser()
self.set_handle_robots(False)
self.addheaders = [("User-agent","Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.13) Gecko/20101206 Ubuntu/10.10 (maverick) Firefox/3.6.13")]
def login(self):
self.open("http://www.computerforums.org/forums/login.php?do=login")
self.form = list(self.forms())[0]
self["vb_login_username"] = "Space Negro"
self["vb_login_password"] = "prettyflypassword"
response = self.submit()
# print respone
def spider():
global parsed
# Get URLs from sitemap and spider
sitemap_xml = "http://www.computerforums.org/forums/sitemap/sitemap.xml"
sitemap_response = requests.get(sitemap_xml)
soup = BeautifulSoup(sitemap_response.content)
elements = soup.findAll("url")
urls = [elem.find("loc").string for elem in elements]
# Save parsed URLs to parsed var.
for url in urls:
parsed = urlparse(url)
def post(self):
while True:
# Select one of the URLs we found randomly and post spam, repeat ad infinitum
single_url = (random.choice(parsed))
self.open(single_url)
self.select_form(name = "vbform")
self["vbform"] = "You guys think you're computer experts? Check out [URL="http://niggasin.space/forum/technophiliacs-technophiles"]this[/URL] forum."
self.submit()
def main():
login(self)
spider()
post(self)
main()
Updated code, still buggy since for some reason the Mechanize module can't find the forms by name and i know for sure that these forms are named thusly, i'll have to identify them by another attribute i suppose.
Ok function to login works, spidering as well, but there's a bug in the last function which i am fixing now.
It seemed as if the original spider didn't return any results but the alternative as i have it is not much better meh.
def spider():
global link
# Get URLs from sitemap and spider
sitemap_xml = "http://www.computerforums.org/forums/sitemap/sitemap.xml"
sitemap_response = requests.get(sitemap_xml)
soup = BeautifulSoup(sitemap_response.content)
for link in soup.findAll('li'):
for url in link.findAll('a', 'href'):
for result in url.requests.get(url):
if result:
results.append(result)
print link -
2016-02-27 at 3:32 AM UTCWhat's the end game?
-
2016-02-27 at 4:05 AM UTCI think I'm just going to spam with links that point to this forum. But we should really all attack at once. I don't have my bot running yet but I'll finish it tonight.
-
2016-02-27 at 4:09 AM UTCWe need to find out what is the worst thing to do as far as spamming goes. Bumping old threads, creating garbage threads, creating garbage posts, etc. Any former mods like to clue us in?
-
2016-02-27 at 4:36 AM UTCI have better things to do
-
2016-02-27 at 7:17 AM UTC
I have better things to do
Sure you do. -
2016-02-27 at 8:05 AM UTCokay I'm there