0
34

[–] MrTotenkopf 0 points 34 points (+34|-0) ago 

You've gained Karma! Current Karma: Baste

Status: The Rustler Of Jimmies

Tha Soylands: Anally Annihilated! For your overwhelmingly monstrous behavior, you have became vilified by the community.

0
11

[–] Shekelstein6M 0 points 11 points (+11|-0) ago 

Could have used the opportunity to redpill people.

0
4

[–] bubby963 [S] 0 points 4 points (+4|-0) ago 

I was considering doing that next. Problem I thought of really is sadly most no one will get pilled off a reddit PM. Theyll read and ignore. These people have the ultimate appeal to authority. If its not someone in some level of prominence or power they ignore it. Doesnt matter if the facts match.

If I find out how to bypass the captcha ill definitely try that next.

0
1

[–] shitlordin 0 points 1 point (+1|-0) ago 

Nailed it. No point bud! Just keep "destroying" their world by ruining Hollywood trash

0
4

[–] Race_War_Now 0 points 4 points (+4|-0) ago 

This. Once you're redpilled you don't care that some guy called Thanos dres.

0
1

[–] KILLtheRATS 0 points 1 point (+1|-0) ago 

Damn

0
10

[–] drakesdoom2 0 points 10 points (+10|-0) ago 

There are captcha defeating scripts, they only made it slightly harder to do.

0
2

[–] Gingercuntfirecrotch 0 points 2 points (+2|-0) ago 

Can you name a few? Last time I looked for one, all I found were a bunch of shit that didn’t work and a bunch more shit behind a sketchy ass paywall.

0
2

[–] theHare 0 points 2 points (+2|-0) ago 

Your name...

0
1

[–] drakesdoom2 0 points 1 point (+1|-0) ago 

I keep my nose out of that. I'd dig myself a bigger hole then I have a ladder otherwise.

0
8

[–] engiebengie 0 points 8 points (+8|-0) ago  (edited ago)

You are one of the Greats of this generation

0
8

[–] MrBlueChip 0 points 8 points (+8|-0) ago 

Please share/PM the script, I want to “experiment” with these guys usernames

0
13

[–] bubby963 [S] 0 points 13 points (+13|-0) ago 

Literally my script for scraping user names was as follows

<?php

set_time_limit(0);

$subs = array("aww","mademesmile","todayilearned","funny","science","unexpected","photoshopbattles","wellthatsucks","oddlysatisfying","casualuk","showerthoughts","pics","oldpeoplefacebook","insanepeoplefacebook","insanepeoplefacebook","trashy","crappydesign","freefolk","iamverysmart","watchpeopledieinside","hmmm","eyebleach","maliciouscompliance","food","gameofthrones","dankmemes","anormaldayinrussia","puns","gonewild","justiceserved","gifs","fakehistoryporn","formula1","animalsbeingjerks","animalsbeingbros","natureismetal","latestagecaptalism","teenagers","scottishpeopletwitter","gay","fuckthealtright","whitepeopletwitter","ruope","esist","lgbt","suddenlygay","judaism","gameofthrones","twoxchromosomes","trollxchromosomes","gaming","movies","againsthatesubreddits","politics","the_mueller","blackpeopletwitter","wholsomebpt","thanosdidnothingwrong","politicalhumor","topmindsofreddit","inthesoulstone","marvelstudios","marvel","games","gamingcirclejerk","chapotraphouse","drama","democrats","atheism","trumpgret","marchagainsttrump");

foreach($subs as $item) { $html = file_get_contents('https://api.pushshift.io/reddit/search/comment/?subreddit='.$item.'&limit=30000&user_removed=no&sort_type=created_utc&sort=desc'); if ($html !== false) {

$parsed_json = json_decode($html);

foreach ($parsed_json->data as $item2) { echo $item2->author.'</br>'; } } } ?>

I then used a professional hacking program I have access to as part of my job to mass spam as it has built in multithreading. Basically used said script to scrape 100k names at a time then spammed them

0
10

[–] Satirical 0 points 10 points (+10|-0) ago  (edited ago)

NOW AVAILABLE AS A PYTHON SCRIPT

I also made it ignore users that have been deleted.

It seems that only certain users get the captcha for sending messages, it's not on for my accounts.

If anyone is interested I'll write up a multithreaded script to do the messaging too.

import requests
import json
from collections import defaultdict
subs = ["aww","mademesmile","todayilearned","funny","science","unexpected","photoshopbattles","wellthatsucks","oddlysatisfying","casualuk","showerthoughts","pics","oldpeoplefacebook","insanepeoplefacebook","insanepeoplefacebook","trashy","crappydesign","freefolk","iamverysmart","watchpeopledieinside","hmmm","eyebleach","maliciouscompliance","food","gameofthrones","dankmemes","anormaldayinrussia","puns","gonewild","justiceserved","gifs","fakehistoryporn","formula1","animalsbeingjerks","animalsbeingbros","natureismetal","latestagecaptalism","teenagers","scottishpeopletwitter","gay","fuckthealtright","whitepeopletwitter","ruope","esist","lgbt","suddenlygay","judaism","gameofthrones","twoxchromosomes","trollxchromosomes","gaming","movies","againsthatesubreddits","politics","the_mueller","blackpeopletwitter","wholsomebpt","thanosdidnothingwrong","politicalhumor","topmindsofreddit","inthesoulstone","marvelstudios","marvel","games","gamingcirclejerk","chapotraphouse","drama","democrats","atheism","trumpgret","marchagainsttrump"]
subs_authors = defaultdict(list)
api_url = 'https://api.pushshift.io/reddit/search/comment/?subreddit={}&limit=30000&user_removed=no&sort_type=created_utc&sort=desc'
for item in subs:
    url = api_url.format(item)
    resp = requests.get(url)
    if resp.status_code == 200:
        json_data = resp.json()['data']
        for d in json_data:
            if d['author'].lower() != "[deleted]":
                subs_authors[item].append(d['author'])

fills out subs_authors object which will look like this:

{
    "sub_name": ["list", "of", "usernames"],
    "sub_name2": ["more", "user", "names"]
}

0
4

[–] LGBTQ_Ally 0 points 4 points (+4|-0) ago 

dankmemes

I said "endgame bad" on there once and got like 50 downvotes. This brings tears to my eyes. Thank you for your service.

0
4

[–] WH32 0 points 4 points (+4|-0) ago 

That's really cool. Bizarre that they hadn't protected themselves against this into now.

0
1

[–] KILLtheRATS 0 points 1 point (+1|-0) ago 

....hmmmm what job gives access to hacking software???

0
6

[–] lemon11 0 points 6 points (+6|-0) ago  (edited ago)

Unfortunately most of those accounts were probably fake from the outside. That's how rEddit grew in the first place (edit: actually this was closer to the story I was thinking of), and it's how it's dying.

But I look forward to seeing any genuine responses of grief and outrage at an inconsequential "spoiler," and thank you for your service in this endeavor.

0
15

[–] bubby963 [S] 0 points 15 points (+15|-0) ago  (edited ago)

Oh trust me. I had tonnes of death threats and doxxing attempts. People saying id literally ruined their lives lmao. Even got my own personal posse on reddit now who follow every post I make telling me Im a cunt. Was a good ride while it lasted

There is no way I can sieve through all the replies. I have over 4k atm. But Ive screenshotted the best I could and will share them soon

0
12

[–] healer56heal 0 points 12 points (+12|-0) ago 

get spoiled on newest soyflick

life literally over

ASBOLUTE STATE

0
4

[–] LatexSanta 0 points 4 points (+4|-0) ago 

Well done, you mad lad, you. Enjoy your complementary based&redpilled asspats. Anyone that doxxes, threatens death, or has their life destroyed just because the latest jew-flick was LE SPOILED, is a dumb-ass.

0
5

[–] 18316528? 0 points 5 points (+5|-0) ago 

That's brilliant holy shit

0
4

[–] Assholecasserole 0 points 4 points (+4|-0) ago 

Can’t just give us this without linking a pic of the many angry replies that you got.

load more comments ▼ (20 remaining)