User Controls
Who wants to help Troll a Site?
-
2016-02-24 at 4:01 PM UTChttp://www.computerforums.org/forums/
I went on there for basic computer stuff and bloody hell they throw the ball out after every non-computer comment.
So if they are this easily wound up, I am gonna troll them but would not mind some assistance. -
2016-02-24 at 6:07 PM UTCMaybe i will.
-
2016-02-24 at 9:38 PM UTCDid they kick you out already? I saw your introduction thread under the name "suicidal fish" on there earlier today, but it appears to have disappeared.
-
2016-02-25 at 10:27 AM UTC
Did they kick you out already? I saw your introduction thread under the name "suicidal fish" on there earlier today, but it appears to have disappeared.
They have....But I have TOR.
Now I am more determined then ever.
I will start on it this afternoon -
2016-02-25 at 3:12 PM UTCWhat did you do, specially?
And what is the plan of attack? -
2016-02-25 at 3:47 PM UTC
What did you do, specially?
And what is the plan of attack?
In truth I went there with good intentions and bloody hell they have no sense of humor. They would HATE this place.
I would post Dumpster Slut Style posts like 'These members will die lonely' then gave a list of the users with the most posts.
And they were sending me massive abuse calling me every name under the sun, it was actually quite funny.
I wanna CP them for sure, any ideas on usernames?
I am creative as a pile of bricks
-
2016-02-25 at 3:58 PM UTCMass spam links to this site.
-
2016-02-25 at 4:04 PM UTC
Mass spam links to this site.
How do you create 'fake' Links.
So for example you click on www.abc.com and it brings you here? -
2016-02-25 at 4:07 PM UTC
-
2016-02-25 at 4:11 PM UTCGet Sophie or someone to build a bot that spams the site with links like that under various different usernames at the same time. DDOS their site after a while. There is a slight chance some people will come here looking for answers. It's easier to steal their members than troll them on a site with such strict rules.
-
2016-02-25 at 4:17 PM UTC
You could try some like this:
you guys think you're computer experts? Check out this site.
That looks perfect, if I copy and paste that would it work on there site?
-
2016-02-25 at 4:19 PM UTCI don't know. Maybe?
-
2016-02-25 at 4:35 PM UTCI just tried registering on TOR and it came up with this :
Sorry, but your IP Address has been listed as a known spammer. You will not be allowed to register. -
2016-02-25 at 5:14 PM UTCWhat a bunch of faggots.
-
2016-02-26 at 2:01 AM UTCI'll troll your site ;)
-
2016-02-26 at 5:08 AM UTC
Get Sophie or someone to build a bot that spams the site with links like that under various different usernames at the same time. DDOS their site after a while. There is a slight chance some people will come here looking for answers. It's easier to steal their members than troll them on a site with such strict rules.
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]
# parse urls
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
parsed = spider
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. -
2016-02-26 at 5:26 AM UTCAlso VPNs are not blocked like TOR.
-
2016-02-26 at 5:35 AM UTCfuckin arrogant potato farmers
now I remember why I don't bother posting on tech forums anymore -
2016-02-26 at 5:48 AM UTC
-
2016-02-26 at 5:49 AM UTC