User Controls
Thanked Posts by Sophie
-
2017-05-08 at 1:01 PM UTC in Feeling superior is such a frontAn 'I'm always right' attitude is a like having a lighthouse on your head but instead of light it just blasts "dunning-kruger" in all directions. Sometimes even audibly, Doppler effect notwithstanding.
-
2017-05-08 at 1:32 PM UTC in teh retraded thred herppppp slober fuk glum editshin
Originally posted by Kolokol-1 I'm so sick of this motherfucking bullshit
Every time I have to deal with this I just want to kill everybody involved
This has gone on my entire short life
This is part of the reason I want to kill myself so much
At least I know not to fucking have kids I guess
Or at least not have kids with a crazy person. -
2016-01-17 at 1:56 AM UTC in Nigga' i am so e-famous you don't even know.For reference:
http://niggasin.space/forum/technoph...loit-suggester
https://github.com/NullArray/RootHelper
So famous:
http://www.kitploit.com/2016/01/root...downloads.html
http://seclist.us/roothelper-a-bash-...ux-system.html
https://n0where.net/linux-privilege-...on-roothelper/
http://www.digitalmunition.me/2016/01/roothelper-a-bash-script-that-downloads-and-unzips-scripts-that-will-aid-with-privilege-escalation-on-a-linux-system/
Python Trending also did PyCat.
As a certified attention whore this is like crack cocaine to me.
I'll leave you with a funny picture i encountered while trying to SQLi some site.
Yes this actually happened. I lol'd. -
2017-02-20 at 7:04 AM UTC in Bounty: Kill SpectraL
-
2017-05-05 at 12:52 PM UTC in Just got out of the ER
Originally posted by SCronaldo_J_Trump Benzos are the shittiest drug on the planet and you americans gobble them up like candy and wonder why you are so fucking broken and retarded, same with opiates and meth and everything, Your culture has no self control, its just WORK WORK WORK WORK WORK and constant degrading mental abuse and oversocialization so you have no choice but to self medicate with drugs, sex, shopping, everything wrong with western culture is a direct result of capitalism. Capitalism used to be cool until everything became illegal and now you are just supposed to take pills and do online dating like a fucking cuck.
Fuck that bullshit I'm a human dammit if you don't lash out at them and show them that you are an animal they will treat you like another number.
The only thing that makes capitalism shit is when the government gets involved. -
2017-05-02 at 10:46 PM UTC in Long distance love
-
2017-05-05 at 2:20 AM UTC in Unusual SSL Error when opening page with Mechanize.It is alive. Special thanks to Lanny <3
#!/usr/bin/env python2.7
import pycurl
import pickle
import os.path, os, sys
import time
import StringIO
import json
from selenium import webdriver
from blessings import Terminal
from ipwhois import IPWhois
from pprint import pprint
t = Terminal()
c = pycurl.Curl()
print t.cyan("""
oooo oooo ooooo oooo oooo ooooo oooooooooo
8888o 888 888 8888o 888 888 888 888
88 888o8 88 888 88 888o8 88 888 888oooo88
88 888 88 888 88 888 88 888 888 88o
o88o 8 o88o o888o o88o 8 o88o o888o o888o 88o8
Threat Intel Interface
\n""")
# Check if we have API ID/key saved
if not os.path.isfile("HDB-api-ID.p"):
print "[" + t.green("+") + "]Please provide your HoneyDB API ID\n"
DB_API_ID = raw_input("API ID: ")
pickle.dump(DB_API_ID, open( "HDB-api-ID.p", "wb" ))
print "[" + t.green("+") + "]Please provide your HoneyDB API key\n"
DB_API_KEY = raw_input("API key: ")
pickle.dump(DB_API_KEY, open( "HDB-api-key.p", "wb" ))
print "[" + t.green("+") + "]Your API data has been saved to 'HDB-api-ID.p' and 'HDB-api-key.p' in the current directory.\n"
else:
try:
DB_API_ID = pickle.load(open( "HDB-api-ID.p", "rb" ))
DB_API_KEY = pickle.load(open( "HDB-api-key.p", "rb" ))
except IOError as e:
print "\n[" + t.red("!") + "]Critical. An IO error was raised while attempting to read API data.\n"
print e
sys.exit(1)
ID_path = os.path.abspath("HDB-api-ID.p")
KEY_path = os.path.abspath("HDB-api-key.p")
print "\n[" + t.green("+") + "]Your API ID was succesfully loaded from " + ID_path
print "[" + t.green("+") + "]Your API key was succesfully loaded from " + KEY_path
# WHOIS function
def whois():
print "[" + t.green("+") + "]Please provide an IP for WHOIS lookup."
TARGET = raw_input("\n<" + t.cyan("WHOIS") + ">$ ")
obj = IPWhois(TARGET)
results = obj.lookup_rdap(depth=1)
pprint(results)
print "\n[" + t.magenta("?") + "]Would you like to append the WHOIS record to a text file?\n"
logs = raw_input("[Y]es/[N]o: ")
format = json.dumps(results, indent = 2)
if logs == "y":
with open( "whois.log", "ab" ) as outfile:
outfile.write("Host: " + TARGET + "\n")
outfile.write(format)
outfile.close()
print "[" + t.green("+") + "]Results saved to whois.log in the current directory.\n"
elif logs == "n":
print "[" + t.green("+") + "]Returning to main menu.\n"
else:
print "[" + t.red("!") + "]Unhandled Option.\n"
def hosts():
a = StringIO.StringIO()
# Options for PyCurl
opts = ['X-HoneyDb-ApiId: ' + DB_API_ID, 'X-HoneyDb-ApiKey: ' + DB_API_KEY]
c.setopt(pycurl.HTTPHEADER, (opts))
c.setopt(pycurl.FOLLOWLOCATION, 1)
c.setopt(pycurl.URL, "https://riskdiscovery.com/honeydb/api/bad-hosts")
c.setopt(c.WRITEDATA, a)
c.perform()
os.system("clear")
print "\n\n[" + t.green("+") + "]Retrieved Threat Feed, formatting..."
time.sleep(1)
response_h = json.loads(a. getvalue())
pprint(response_h)
format = json.dumps(response_h, indent = 2)
with open('hosts.log', 'ab') as outfile:
outfile.write(format)
outfile.close()
print "\n\nResults saved to 'hosts.log' in the current directory"
def feed():
b = StringIO.StringIO()
# Options for PyCurl
opts = ['X-HoneyDb-ApiId: ' + DB_API_ID, 'X-HoneyDb-ApiKey: ' + DB_API_KEY]
c.setopt(pycurl.HTTPHEADER, (opts))
c.setopt(pycurl.FOLLOWLOCATION, 1)
c.setopt(pycurl.URL, "https://riskdiscovery.com/honeydb/api/twitter-threat-feed")
c.setopt(c.WRITEDATA, b)
c.perform()
os.system("clear")
print "\n\n[" + t.green("+") + "]Retrieved Threat Feed, formatting..."
time.sleep(1)
response_f = json.loads(b. getvalue())
pprint(response_f)
format = json.dumps(response_f, indent = 2)
with open('feed.log', 'ab') as outfile:
outfile.write(format)
outfile.close()
print "\n\nResults saved to 'feed.log' in the current directory"
try:
while True:
print "\n\n[" + t.green("+") + "]Welcome to Mimir. Please select an action."
print """
1. Fetch Threat Feed 5. Visualize Top Malicious Hosts in Browser
2. Fetch Bad Host List 6. Visualize Top Targeted Services in Browser
3. Perform WHOIS Lookup 7. Visualize Results for Single Host in Browser
4. Invoke Nmap Scan 8. Quit
"""
option = raw_input("\n<" + t.cyan("MIMIR") + ">$ ")
if option == '1':
feed()
elif option =='2':
hosts()
elif option == '3':
whois()
elif option == '4':
host = raw_input("\n[" + t.green("+") + "]Please enter a target to scan: ")
try:
os.system("nmap -T4 -Pn --reason " + host)
except Exception as e:
print "\n[" + t.red("!") + "]Critical. An error was raised with the following message "
print e
elif option == '5':
try:
driver = webdriver.Firefox()
driver.get("https://riskdiscovery.com/honeydb/#hosts")
except:
pass
elif option == '6':
try:
driver = webdriver.Firefox()
driver.get("https://riskdiscovery.com/honeydb/#services")
except:
pass
elif option == '7':
host = raw_input("\n[" + t.green("+") + "]Please enter a host: ")
try:
driver = webdriver.Firefox()
driver.get("https://riskdiscovery.com/honeydb/#host/" + host )
except:
pass
elif option == '8':
break
else:
print "\n[" + t.red("!") + "]Unhandled Option."
except KeyboardInterrupt:
print "\n\n[" + t.red("!") + "]Critical. User aborted." -
2017-05-05 at 1:21 AM UTC in teh retraded thred herppppp slober fuk glum editshin
Originally posted by Malice I've come to the creeping suspicion that Lanny, my secretary who I am probably going to marry one day, has fallen madly in love with me after recent events, likely stemming from some gender-identity conflict driven mothering complex or a need for a male that can adequately loving him, and is avoiding the site due to the immense internal conflict this is causing.
I think your bromance with Lanny is kawaii. I am conflicted, i want to know more about your feelings for Lon Lon-Chon but at the same time i don't want Lon Lon-Chon to feel uncomfortable. This is a deeply empathic state of being, it is an abstract sort of feel. -
2017-05-04 at 3:37 AM UTC in teh retraded thred herppppp slober fuk glum editshin
Originally posted by 1337 I'm a sure thing you are probably not, sorry stop
I been grindin' you should ollie off my flow
like Medusa I make your body rock
to a melancholy sample my boy karate chopped
You grab a mic like you tuck your penis back first
So eat a dick, matter fact eat it backwards
Ass first, shutup and keep your whack verse
I kill the track then I bump it in a black hearse.
It's on now.
Take a step back crack head before you get fucked.
And cucked, flow like an earthquake; atlas tugged.
I'm Randian i'll challenge any men, weak nigga your ass is candy, man
Socially retarded, the prize for useless nigga you'd be awarded
Lauded as the dumbest sucker, not hating, coming clean, shampoo motherfucker
I could go on for days but i'm mostly dazed by this dank weed, silver haze
You couldn't afford it, fuck your misses in the ass calling her shawty
And if there's shit on my dick that bitch better swallow
I ain't no cleaner guy, my name ain't Hernando, my words, the law
you better follow cuz i got a mag full of nines, points? Hollow. -
2017-05-04 at 1:11 AM UTC in teh retraded thred herppppp slober fuk glum editshin
-
2017-05-04 at 12:01 AM UTC in teh retraded thred herppppp slober fuk glum editshinIf I don't have the mag I get a bastard stabbed
With a knife big as a claw of an Alaskan crab
Young, I'm down with Lanny give me six weeks
All y'all little pipsqueaks is up shit's creek
Think we a joke? I'll put three in your throat
Drunk off gin and C&C coke then we flee in a boat
Then I come open up the spot with Coconut Ciroc
So the hoes'll suck some cock
Then I'll forget to call her, after the nut I get attention deficit disorder
1-5 catch us off X's and dust
My whole clique are registered sex offenders
Pop shit, we'll hold your funeral, XVIs
Niggas' money come in Roman numerals
Your block slow now, she fuck with them rappers
Cause y'all niggas' money took a muscle relaxer -
2017-05-03 at 8:58 PM UTC in Just got out of the ER
-
2017-05-03 at 8:43 PM UTC in Can we all take a moment to mourn our lost brotherYou gotta' give it to the sand niggers, they sure know how to build a dank box.
-
2017-05-03 at 11:17 AM UTC in Just got out of the ER
Originally posted by Dargo Malice, I'm glad you're doing better. Honestly I am.
But you talk like you've been in a war zone and watched all of your closest buddies get blown to bits right in front of you. Recover from what? Your self imposed misery? The fuck, dude. There are people who experience real, traumatic things in life, and you ain't one of them. I don't get it.
You cannot possibly know how other people experience life. -
2017-05-03 at 10:04 AM UTC in Just got out of the ER
Originally posted by Malice Is it the hair? We punks aren't as scary as we seem.
All kidding aside, I'm literally close to being asexual right now and would never do that to someone, and have never felt the urge to. That just isn't who I am.
But I'm not asking to meet with anyone, I just meant if anyone requested it I may be up for it, with no one in mind *shrugs*
You actually seem happier already. -
2017-05-03 at 4:42 AM UTC in Anybody who "hates the police" is either retarded or a total fucking poser
Originally posted by Lanny It's trivial to prove this is untrue. "The raiders are the best, don't even try to argue bitch" is an opinion with an implied threat of force but it is far from being a law.
It doesn't work the other way around. If you say "The raiders are the best, don't even try to argue bitch" you are not making a law because you are not the state. But the law that the state mandates are opinions.
Originally posted by Lanny That doesn't really seem like an opinion since you will be forced to repay debts for breaking speed limits. Like maybe you could argue "you ought to drive slower than some mandated speed based on actual research into safe driving speeds" is an opinion, although it seems like it's probably a justified opinion at that. But there is clearly more to law than opinions, even if you deny the legitimacy of the rule of law.
What even is a "justifiable opinion". If my opinion that you're a dickhead is justified does it then follow that if you disagree i may exert force onto you until you agree or at least acquiesce?
Originally posted by Lanny Hold me, the scare quotes are really getting to me mama!
Scare quotes or not what i said was objectively true.
Originally posted by Captain Falcon On the subject of economics, yes he is.
I'll kill you. -
2017-05-03 at 1:35 AM UTC in Attn everyone: Stop dumping every thread in SG
-
2017-05-03 at 1:28 AM UTC in I met a boy.
-
2017-05-03 at 12:51 AM UTC in hows the night going?
Originally posted by RestStop Sounds like a nice night. I'm sitting here thinking of some extremely elaborate way through the use of Tor and riddles and actual physical traveling(kinda like a virtual and physical treasure hunt) to find a way to the purest meth on earth and then when you get there it's 300 a gram haha.
I should probably include some mental and psychotically scary level to get there as well.
Let's collab on the project. -
2017-05-02 at 12:13 AM UTC in Long distance love
>black
lolnope