User Controls

  1. 1
  2. 2
  3. 3
  4. ...
  5. 113
  6. 114
  7. 115
  8. 116
  9. 117
  10. 118
  11. ...
  12. 139
  13. 140
  14. 141
  15. 142

Thanked Posts by Sophie

  1. Sophie Pedophile Tech Support
    An '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.
    The following users say it would be alright if the author of this post didn't die in a fire!
  2. Sophie Pedophile Tech Support
    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.
    The following users say it would be alright if the author of this post didn't die in a fire!
  3. Sophie Pedophile Tech Support
    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.
    The following users say it would be alright if the author of this post didn't die in a fire!
  4. Sophie Pedophile Tech Support
    Originally posted by aldra pretty sure this thread could legit get you terrorism charges now

    Fuck the police.
    The following users say it would be alright if the author of this post didn't die in a fire!
  5. Sophie Pedophile Tech Support
    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.
    The following users say it would be alright if the author of this post didn't die in a fire!
  6. Sophie Pedophile Tech Support
    Originally posted by HampTheToker 19

    Basically a cougar, amirite?

    Nah that's ok. I mean it would be a more scandalous story if she'd been underage.
    The following users say it would be alright if the author of this post didn't die in a fire!
  7. Sophie Pedophile Tech Support
    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."
    The following users say it would be alright if the author of this post didn't die in a fire!
  8. Sophie Pedophile Tech Support
    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.
    The following users say it would be alright if the author of this post didn't die in a fire!
  9. Sophie Pedophile Tech Support
    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.
    The following users say it would be alright if the author of this post didn't die in a fire!
  10. Sophie Pedophile Tech Support
    Originally posted by RestStop That was honestly fuckin' gold , son.

    Thanks, unfortunately i can't take credits. Just wanted to post the lyrics because they're lit af.

    Here is the original.



    How'd you like my alt The Fridge though? Kitchen puns were on point.
    The following users say it would be alright if the author of this post didn't die in a fire!
  11. Sophie Pedophile Tech Support
    If 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
    The following users say it would be alright if the author of this post didn't die in a fire!
  12. Sophie Pedophile Tech Support
    Originally posted by Bill Krozby word

    You got it Doug.

    I am feeling generous, you have three minutes to reconsider from the timestamp of this post.

    Don't test me bro. ( ͡° ͜ʖ ͡°)
    The following users say it would be alright if the author of this post didn't die in a fire!
  13. Sophie Pedophile Tech Support
    You gotta' give it to the sand niggers, they sure know how to build a dank box.
    The following users say it would be alright if the author of this post didn't die in a fire!
  14. Sophie Pedophile Tech Support
    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.
    The following users say it would be alright if the author of this post didn't die in a fire!
  15. Sophie Pedophile Tech Support
    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.
    The following users say it would be alright if the author of this post didn't die in a fire!
  16. Sophie Pedophile Tech Support
    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.
    The following users say it would be alright if the author of this post didn't die in a fire!
  17. Sophie Pedophile Tech Support
    Originally posted by Ajax You sure have a lot of answers, don't you?

    In this case Spectral is right. Lanny is a central planning, authoritarian commie tranny. And when have commies ever cared about market demand?
    The following users say it would be alright if the author of this post didn't die in a fire!
  18. Sophie Pedophile Tech Support
    Originally posted by SCronaldo_J_Trump anyone can find a pic like that on googoel also its shooped gont

    Nah nigga, nah dawg. Her name's not Haley, but it ain't no shoop either.
    The following users say it would be alright if the author of this post didn't die in a fire!
  19. Sophie Pedophile Tech Support
    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.
    The following users say it would be alright if the author of this post didn't die in a fire!
  20. Sophie Pedophile Tech Support

    >black


    lolnope
    The following users say it would be alright if the author of this post didn't die in a fire!
  1. 1
  2. 2
  3. 3
  4. ...
  5. 113
  6. 114
  7. 115
  8. 116
  9. 117
  10. 118
  11. ...
  12. 139
  13. 140
  14. 141
  15. 142
Jump to Top