User Controls

  1. 1
  2. 2
  3. 3
  4. ...
  5. 1231
  6. 1232
  7. 1233
  8. 1234
  9. 1235
  10. 1236
  11. ...
  12. 1426
  13. 1427
  14. 1428
  15. 1429

Posts by Sophie

  1. Sophie Pedophile Tech Support
    I know i'm not supposed to kiss and tell but i owe the nigger that told me this nothing so there.

    Jeff Hunter actually extorted Pirate Hippie for nudes(She was underage at the time). Shit got out of hand and when shit was about to hit the fan Jeff TATA'd for now. Ask Zok if you don't believe me, Jeff and Zok were actually roomates at some point.

    Zok got doxed yeah, and it was a fucking ninja dox, very detailed wow.

    Idio's dox was an extortion effort by somone who wanted a ban lifted, some people think i was involved, however my only involvement was mediating between the extortionist and idio. Because i'm a two faced bastard, i actually got pretty close to the administration which made me well suited for the job, at some point idio and rocklin wanted to make me a mod lel, true story ask Rocklin. Just imagine the shitstorm if that would have happened, top kek.

    The reason i went to that fat tranny's site was because sanctuary was gay and i had no place else to go. So i sent it a PM like: Yo, it's psychomanthis, i has extensive mod experience(I'm putting this on my resume just for keks) and i'm somewhat notorious, i'll help out with the site, i can has admin? It said yes, and for a moment i was actually pretty serious about making it work, longlivezoklet was a gay name but when you typed zoklet into google it was one of the first results after zoklet was kill which made members come that were looking for zoklet. Being the mentally unstable cunt that HC45 is working with it became impossible and in the mean time redfern showed up on my radar and i started posting there. When the tranny found out it blew up in a big rage which resulted into a lot of lulzy threads on redfern, then the tranny got doxed by a dear friend of mine and in a great beam of utmost 1337 justice LLZ was annihilated with the fury of a thousand suns. As i gazed upon the smoking crater. I was grateful and pleased.
  2. Sophie Pedophile Tech Support
    Gangsta shit.



  3. Sophie Pedophile Tech Support
    Would you really want to? Wouldn't it be kind of a turn off to be fucking a girl and realize "this bitch wants to like, play with my organs……"

    Who says she has to be alive when i bang her?

    222

    Respect
  4. Sophie Pedophile Tech Support
    Its called a pharmaball. Methylphenidate and Midazolam IV is way better than meth and heroin

    You're possibly full of shit, but how would one get the midazolam into solution? It doesn't dissolve in water.
  5. Sophie Pedophile Tech Support
    Jesus Christ man shooting crap into your veins is not cool bro.

    I did notice you were missing, but I didn't realize that was why. :(

    Hey don't be sad i'll be fine, like i said i almost never IV anything. But since this was a unique experience i thought i'd make a thread, also i just slammed it twice rest of the time i snorted it. Only shitty thing about a speed binge is the hangover i think i atleast burned a couple braincells away due to excitotoxicity, and probably a couple of dopamine receptors as well but it's ok tomorrow i'm getting opiates. I know this guy though who's been addicted to speed for like 18 years and i think to myself Jesus Christ man how can you even function.
  6. Sophie Pedophile Tech Support

    >Dank websites
    >No onions


    smh tbh fam
  7. Sophie Pedophile Tech Support
    Meh, i'd probably do her.
  8. Sophie Pedophile Tech Support
    I'm actually surprised you don't know.

    Me too, but breivik is 8ch elitist probably, he thinks mchan is a honeypot. Lel.
  9. Sophie Pedophile Tech Support
    Gad is a pretty nice guy actually, talked to him on TC when new badmin was selected also, he HAS to delete cp because else the servers will be seized again you should be happy topless lolis, nudism threads(with lolis) and such are allowed on cunny and candy.
  10. Sophie Pedophile Tech Support
    DO NOT KILL YOURSELF I WILL MISS YOU OP

    Seconded.
  11. Sophie Pedophile Tech Support
    Xplay as the onion? Never use it, and lock is among us, i can sense it. Also there are a billion onion sites you have to sign up for, if they need an email, give em a tormail adress else it's just a username and password breh. I also don't use xplay because it's slow, and you can't sort on the content you want.
  12. Sophie Pedophile Tech Support
    I score different on different tests and i don't really feel like taking this one.
  13. Sophie Pedophile Tech Support
    How can I do this?

    I've come across this code that will(I've verified via TCPdump on one of my phones) send packets from my wireless card.

    https://gist.github.com/austinmarton/1922600


    #include <arpa/inet.h>
    #include <linux/if_packet.h>
    #include <stdio.h>
    #include <string.h>
    #include <stdlib.h>
    #include <sys/ioctl.h>
    #include <sys/socket.h>
    #include <net/if.h>
    #include <netinet/ether.h>

    #define MY_DEST_MAC0 0x00
    #define MY_DEST_MAC1 0x00
    #define MY_DEST_MAC2 0x00
    #define MY_DEST_MAC3 0x00
    #define MY_DEST_MAC4 0x00
    #define MY_DEST_MAC5 0x00

    #define DEFAULT_IF "wlan0"
    #define BUF_SIZ 1024

    int main(int argc, char *argv[])
    {
    int sockfd;
    struct ifreq if_idx;
    struct ifreq if_mac;
    int tx_len = 0;
    char sendbuf[BUF_SIZ];
    struct ether_header *eh = (struct ether_header *) sendbuf;
    struct iphdr *iph = (struct iphdr *) (sendbuf + sizeof(struct ether_header));
    struct sockaddr_ll socket_address;
    char ifName[IFNAMSIZ];

    /* Get interface name */
    if (argc > 1)
    strcpy(ifName, argv[1]);
    else
    strcpy(ifName, DEFAULT_IF);

    /* Open RAW socket to send on */
    if ((sockfd = socket(AF_PACKET, SOCK_RAW, IPPROTO_RAW)) == -1) {
    perror("socket");
    }

    /* Get the index of the interface to send on */
    memset(&if_idx, 0, sizeof(struct ifreq));
    strncpy(if_idx.ifr_name, ifName, IFNAMSIZ-1);
    if (ioctl(sockfd, SIOCGIFINDEX, &if_idx) < 0)
    perror("SIOCGIFINDEX");
    /* Get the MAC address of the interface to send on */
    memset(&if_mac, 0, sizeof(struct ifreq));
    strncpy(if_mac.ifr_name, ifName, IFNAMSIZ-1);
    if (ioctl(sockfd, SIOCGIFHWADDR, &if_mac) < 0)
    perror("SIOCGIFHWADDR");

    /* Construct the Ethernet header */
    memset(sendbuf, 0, BUF_SIZ);
    /* Ethernet header */
    eh->ether_shost[0] = ((uint8_t *)&if_mac.ifr_hwaddr.sa_data)[0];
    eh->ether_shost[1] = ((uint8_t *)&if_mac.ifr_hwaddr.sa_data)[1];
    eh->ether_shost[2] = ((uint8_t *)&if_mac.ifr_hwaddr.sa_data)[2];
    eh->ether_shost[3] = ((uint8_t *)&if_mac.ifr_hwaddr.sa_data)[3];
    eh->ether_shost[4] = ((uint8_t *)&if_mac.ifr_hwaddr.sa_data)[4];
    eh->ether_shost[5] = ((uint8_t *)&if_mac.ifr_hwaddr.sa_data)[5];
    eh->ether_dhost[0] = MY_DEST_MAC0;
    eh->ether_dhost[1] = MY_DEST_MAC1;
    eh->ether_dhost[2] = MY_DEST_MAC2;
    eh->ether_dhost[3] = MY_DEST_MAC3;
    eh->ether_dhost[4] = MY_DEST_MAC4;
    eh->ether_dhost[5] = MY_DEST_MAC5;
    /* Ethertype field */
    eh->ether_type = htons(ETH_P_IP);
    tx_len += sizeof(struct ether_header);

    /* Packet data */
    sendbuf[tx_len++] = 0xde;
    sendbuf[tx_len++] = 0xad;
    sendbuf[tx_len++] = 0xbe;
    sendbuf[tx_len++] = 0xef;

    /* Index of the network device */
    socket_address.sll_ifindex = if_idx.ifr_ifindex;
    /* Address length*/
    socket_address.sll_halen = ETH_ALEN;
    /* Destination MAC */
    socket_address.sll_addr[0] = MY_DEST_MAC0;
    socket_address.sll_addr[1] = MY_DEST_MAC1;
    socket_address.sll_addr[2] = MY_DEST_MAC2;
    socket_address.sll_addr[3] = MY_DEST_MAC3;
    socket_address.sll_addr[4] = MY_DEST_MAC4;
    socket_address.sll_addr[5] = MY_DEST_MAC5;

    /* Send packet */
    if (sendto(sockfd, sendbuf, tx_len, 0, (struct sockaddr*)&socket_address, sizeof(struct sockaddr_ll)) < 0)
    printf("Send failed\n");

    return 0;
    }


    I'm not sure what to change in the code though as I'm a novice with C. This is the type of stuff I'm going to learn though. Lower level C code, mostly TCP/IP.

    Anyways, the packet data is going to be "222.173.190.239"(deadbeef) but I really don't know what to make it and don't know what to make the headers…

    I'm pretty much a novice at C as well, but this is what i can tell you if you don't know already.


    /* Open RAW socket to send on */
    if ((sockfd = socket(AF_PACKET, SOCK_RAW, IPPROTO_RAW)) == -1) {
    perror("socket");
    }



    AF_PACKET sets the domain to a packet socket. For instance if you want to set the domain to an IPv4 adress you'd use AF_INET. SOCKET_RAW sets the socket type to raw, which you should do if you're constructing your own ethernet header. If not SOCK_DGRAM can be used. And IPPROTO means just what you'd think it means, it has to do with the protocol, you could set it to IPPROTO_TCP or IPPROTO_UDP. If you haveto change anything i think it may be this or the packet data.


    sendbuf[tx_len++] = 0xde;
    sendbuf[tx_len++] = 0xad;
    sendbuf[tx_len++] = 0xbe;
    sendbuf[tx_len++] = 0xef;


    No clue what this all means. It's so much easier in python though, for real python is awesome



    import socket

    target = "222.173.190.239"
    port = 1337

    # Packet data
    data = 'f1a525da11f6'.decode('hex')

    # Create socket object (IPv4 and UDP)
    client = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)

    # Connect to client
    client.connect((target, port))

    # Send our data
    client.send(data)

    # Recieve our respone
    response = client.recv(4046)

    print response



    I'm pretty sure this would work if you could find out what type of data an fcp packet sends and the neat thing about the fcp protocol is that it can work on different layers, like TCP/IP what let's th recieving end know it's a FCP packet is a special kind of identifier in the packet data if i do remember correctly.
  14. Sophie Pedophile Tech Support
    I didn't know they had meth where you live. I thought it was just a thing in the states and in some asian countries (gaba i think they call it). Well, have fun with the crystal. I'm super jelly.

    Come over here then. And we'll IV it together.
  15. Sophie Pedophile Tech Support
    IV Amphetamines. So some of you may have noticed and most of you won't care anyway but i've been offline for like three days. Me my buddy and my gf got together for a speed party, it was bretty fun. So on the second day of christmas my speed addled brain gave to me a thought: "hmm, what would it be like to inject amphetamines?" I got a couple of sterile rigs around just because... and mind you i almost never ever inject something. But i was high already so i figured YOLO. I cooked it up as one would cook up a shot of heroin basically, hit the vein on the firt try because sooper awesome speed concentration and i'm not totally incompetent. And this was rather interesting because usually you draw the plunger back a little to see if blood comes into the syringe so you know you got the vein for sure. But as i stuck the needle in blood just went into the syringe, lol high blood pressure, lol stimulants.

    Anyway since i was already pretty high i didn't get a huge rush but what struck me the most was just after the injection, was a feeling of clarity such as i have never felt before everything seemed sharp, clear somehow like a mental fog was lifted, so that was bretty cool. Next time i'll IV some before i get high see how that feels.

    So how was your week?
  16. Sophie Pedophile Tech Support
    Quiet, fed.

    Spectral pls.
  17. Sophie Pedophile Tech Support
    What happens if he gets caught an rats you out?

    That sounds like a really bad idea.

    He's the type that'd plead the fifth.
  18. Sophie Pedophile Tech Support
    Here's what i'd do, open the terminal and type:

    locate root|less


    make uninstall



    rm -r /


    Or something of the sort.
  19. Sophie Pedophile Tech Support
    I win. Being the nice guy that i am i made my dealer a deal though if he can't sell it to a noob, i'll reimburse him for the drugs i got. I'm also makeing a bomb for him, he's planning to blow up his eb-gf's car. But he has a good reason, she cheated onhim and took his child away. He'a good guy in essense, with regards to the bomb this is important he already provided the materials so if he want to threaten me for giving him a fake necklace i could remind him we're in a criminal conspircay together. and just give him the money i owe him.
  20. Sophie Pedophile Tech Support
    We need to drup akware on the routhermto hsve ut sdt eyr
  1. 1
  2. 2
  3. 3
  4. ...
  5. 1231
  6. 1232
  7. 1233
  8. 1234
  9. 1235
  10. 1236
  11. ...
  12. 1426
  13. 1427
  14. 1428
  15. 1429
Jump to Top