User Controls

  1. 1
  2. 2
  3. 3
  4. ...
  5. 1212
  6. 1213
  7. 1214
  8. 1215
  9. 1216
  10. 1217
  11. ...
  12. 1426
  13. 1427
  14. 1428
  15. 1429

Posts by Sophie

  1. Sophie Pedophile Tech Support
    When you look out of your grimy window down there in the Canadian projects, do see this big glowing ball of plasma that seems to light up the sky and the entire world around you?

    There, proven.
  2. Sophie Pedophile Tech Support
    >real space niggas redtext

    [greentext]>not knowing how to redtext[/greentext]


    Redtext is bold and doesn't come with a meme arrow.
  3. Sophie Pedophile Tech Support
    mchan has been buggy as shit

    https://masterchan.org/media/m/images/570154078.jpg
  4. Sophie Pedophile Tech Support
    Image 403'd but it's on masterchan so I'm kinda glad

    It was an adult cosplay grill, i think you would have liked her.
  5. Sophie Pedophile Tech Support
    Dank, thanks Lan. Still ezPyCrypto throws an error as soon as i import the module. I'll have to update the original PyCrypto i think. Because it says:

    ImportError: cannot import name RC5
  6. Sophie Pedophile Tech Support
    You should post an onion link to something that isn't child porn, but maybe actually have it be child porn… so I have plausible deniability for having visited the url not knowing what it was.

    I think I'm still probably covered even after saying this, because really can't know whether you're linking to child porn or something else to trick me.

    But I hope it's [not] child porn.

    Sincerely, I do.

    Good thinking.
  7. Sophie Pedophile Tech Support
    that's a really awful plan, but i'm into the idea. wait until they go on vacation or are gone for a weekend, then either try and sneak inside the house and place a spycam yourself, or if unable to get inside the house maybe plant the cam right outside of her window. you can always go oldschool with a pair of binocs or a telescope, too. it might also be a good idea to just finagle some way to get invited over to their house, see if you can get them to show you around, and if they take you into the daughters room be very inconspicuous and try and plant a spycam then. lots of ways to do it, your original plan kinda sucks though because why would she keep a package unopened in her room? what if the camera hole ends up facing the wall? what if she just throws it away? what if her dad takes it? it's too easy to trace that shit back to you, you have to be more sneaky with these things.

    alternatively, stop being a beta piece of shit and just go over there and make friends with the family so you can spend lots of time staring at the qt3.14, and drinking beer and box wine with the parents while watching tv. win-win.

    I'm digging the first paragraph, but the second one not so much depending on the age of the daughter. I mean, if she's a loli he can't possibly go up to their house and hang out with the girl and her parents without looking weird. In which case the first paragraph is a better idea.
  8. Sophie Pedophile Tech Support
    Trianglism more rlela


    Triangilism more rlela confirmed
  9. Sophie Pedophile Tech Support


    https://masterchan.org/media/m/images/570154078.jpg

    IDK guys i feel conflicted.
  10. Sophie Pedophile Tech Support
    Why yes, yes i have.
  11. Sophie Pedophile Tech Support
    As rlela as triangilism.
  12. Sophie Pedophile Tech Support
    cuck'd/10
  13. Sophie Pedophile Tech Support
    Bleh, there seems to be a problem with my PyCrypto module as well, at least the parts that ezPyCrypto is trying to import.


    Traceback (most recent call last):
    File "C:\crypto.py", line 1, in <module>
    from ezPyCrypto import key
    File "C:\Python27\lib\site-packages\ezPyCrypto.py", line 72, in <module>
    from Crypto.Cipher import ARC2, Blowfish, CAST, DES3, RC5 #IDEA
    ImportError: cannot import name RC5


    So then i tried the following with just the PyCrypto module, to generate a pub/priv keypair. But printing the key pair returns




    import os, random, struct

    import Crypto
    import types

    from Crypto.PublicKey import ElGamal, DSA, RSA
    from Crypto.Util.randpool import RandomPool
    from Crypto.Util.number import getPrime
    from Crypto.Cipher import AES
    from Crypto.Hash import MD5


    def KeyGen(self, something = 512, algoPub=None, algoSess=None, **kwds):

    passphrase = kwds.get('passphrase', '')

    if type(something) is types.IntType:
    # which public key algorithm did they choose?
    if algoPub == None:
    algoPub = 'RSA'
    algoP = self._algosPub.get(algoPub, None)
    if algoP == None:
    # Whoops - don't know that one
    raise Exception("AlgoPub must be one of 'ElGamel', 'RSA' or 'DSA'")
    self.algoPub = algoP
    self.algoPname = algoPub

    # which session key algorithm?
    if algoSess == None:
    algoSess = 'Blowfish'
    algoS = self._algosSes.get(algoSess, None)
    if algoS == None:
    # Whoops - don't know that session algorithm
    raise Exception("AlgoSess must be one of AES/ARC2/Blowfish/CAST/DES/DES3/IDEA/RC5")
    self.algoSes = algoS
    self.algoSname = algoSess

    # organise random data pool
    self.randpool = RandomPool()
    self.randfunc = self.randpool.get_bytes

    # now create the keypair
    results = self.makeNewKeys(something, passphrase=passphrase)

    return results

    elif type(something) is types.StringType:
    if algoPub != None:
    raise Exception("Don't specify algoPub if importing a key")
    if self.importKey(something, passphrase=passphrase) == False:
    raise CryptoKeyError(
    "Attempted to import invalid key, or passphrase is bad")
    self.randpool = RandomPool()
    self.randfunc = self.randpool.get_bytes
    else:
    raise Exception("Must pass keysize or importable keys")



    key_pair = KeyGen(1024, RSA, "pass")

    print key_pair


    This returns "None" but i might have some semantic errors since i nigger rigged this code from the ezPyCrypto module itself.
  14. Sophie Pedophile Tech Support
    Looking more into the ezpyCrypto module it would seem encrypting strings is trivial but files a little more complicated. You gotta' read in a file in a particular way. Now PyCrypto's equivalent looks a little like this.


    import os, random, struct
    from Crypto.Cipher import AES

    def encrypt_file(key, in_filename, out_filename=None, chunksize=64*1024):
    """ Encrypts a file using AES (CBC mode) with the
    given key.

    key:
    The encryption key - a string that must be
    either 16, 24 or 32 bytes long. Longer keys
    are more secure.

    in_filename:
    Name of the input file

    out_filename:
    If None, '<in_filename>.enc' will be used.

    chunksize:
    Sets the size of the chunk which the function
    uses to read and encrypt the file. Larger chunk
    sizes can be faster for some files and machines.
    chunksize must be divisible by 16.
    """
    if not out_filename:
    out_filename = in_filename + '.enc'

    iv = ''.join(chr(random.randint(0, 0xFF)) for i in range(16))
    encryptor = AES.new(key, AES.MODE_CBC, iv)
    filesize = os.path.getsize(in_filename)

    with open(in_filename, 'rb') as infile:
    with open(out_filename, 'wb') as outfile:
    outfile.write(struct.pack('<Q', filesize))
    outfile.write(iv)

    while True:
    chunk = infile.read(chunksize)
    if len(chunk) == 0:
    break
    elif len(chunk) % 16 != 0:
    chunk += ' ' * (16 - len(chunk) % 16)

    outfile.write(encryptor.encrypt(chunk))



    But i'm not sure how to translate this to ezPyCrypto. The docmentation i can find only applies to strings.
  15. Sophie Pedophile Tech Support
    Nice poem. Don't leave pl0x.
  16. Sophie Pedophile Tech Support
    Instead of using four letters for "ATTN" hydro used three, there were three people involved in the conception of hydros child. A triangle has three sides. That's three times three.

    [SIZE=72px]Illuminati confirmed[/SIZE]
  17. Sophie Pedophile Tech Support
    [greentext]>Not knowing how to greentext.[/greentext]
  18. Sophie Pedophile Tech Support
    Congratulations, aldra. Now it looks like an even lamer kidiot factory.

    [size=6]As long as it bothers spectral, i endorse this feature.[/size]
  19. Sophie Pedophile Tech Support
    All you left wing faggots should just kill yourselves right now.
  20. Sophie Pedophile Tech Support
    haha, nice try, but you probably infect the text wit h some virus and if i copy it i will be infected, nice try, l0ser

    I know you're bullshitting me but your troll isn't even realistic.

    1. What text and why on earth would you need to copy it.
    2. If you're referring to the code, source code doesn't just spring to life on it's own
    3. If you were able to read source code you'd know exactly what would happen if you run this code.

    Now i don't even Visual Basic but i do know python, as such i can tell what the VB code is meant to do broadly speaking. It's meant to contact a server, drop an executable and run it. Now the trick is that the python program i linked to embeds the VB code into a MS Office document as a macro.

    Finally, my default assumption is that everyone here, as in, at least the T&T regulars are better programmers than me. As such i wouldn't presume to be able to trick anyone by posting source code alone. But then again, the only kind of programming you do is graphics related isn't that right? That's objectively the most useless form of programming ever. Graphics related programming is like the liberal arts studies of computer science.
  1. 1
  2. 2
  3. 3
  4. ...
  5. 1212
  6. 1213
  7. 1214
  8. 1215
  9. 1216
  10. 1217
  11. ...
  12. 1426
  13. 1427
  14. 1428
  15. 1429
Jump to Top