You are viewing a single comment's thread.

view the rest of the comments →

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
5

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

holy shit is this the hacker '4chan'?

0
0

[–] MrBlueChip ago 

Oh fuck ya python script

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
4

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

I dont think anyone bothered till now. Thats all i can imagine. Literally just simple scraping and spamming. I agree its bizarre. I was shocked when I figured out you could just spam shit without consequence. Like what the actual fuck haha. As a result I spoiled at least 100k people of their capeshit. But seriously how do you have it so you can mass spam pms.

0
1

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

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

0
0

[–] bubby963 [S] ago 

Being a pentester haha