User Controls

Who wants to help Troll a Site?

  1. #21
    SBTlauien African Astronaut
    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.
  2. #22
    Obbe Alan What? [annoy my right-angled speediness]
    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?
  3. #23
    Sophie Pedophile Tech Support
    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.
  4. #24
    kroz weak whyte, frothy cuck, and former twink
    Sure I'm down.
  5. #25
    A guy called BikerEcho and says he is from Denmark is the biggest dick
  6. #26
    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....
  7. #27
    kroz weak whyte, frothy cuck, and former twink
    Maybe i will.


    You probably won't because you're a pussy
  8. #28
    kroz weak whyte, frothy cuck, and former twink
    A guy called BikerEcho and says he is from Denmark is the biggest dick


    How is he a dick?
  9. #29
    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
  10. #30
    Obbe Alan What? [annoy my right-angled speediness]
    Could not register while using Cyberghost
  11. #31
    Semiazas Tuskegee Airman
    Why not ping them to overload their sever? It'll only take a few thousand of you. Give or take.
  12. #32
    Sophie Pedophile Tech Support
    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
  13. #33
    Semiazas Tuskegee Airman
    What's the end game?
  14. #34
    SBTlauien African Astronaut
    I 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.
  15. #35
    SBTlauien African Astronaut
    We 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?
  16. #36
    I have better things to do
  17. #37
    SBTlauien African Astronaut
    I have better things to do

    Sure you do.
  18. #38
    Zanick motherfucker [my p.a. supernal goa]
    okay I'm there
Jump to Top