User Controls

  1. 1
  2. 2
  3. 3
  4. ...
  5. 132
  6. 133
  7. 134
  8. 135
  9. 136
  10. 137
  11. ...
  12. 155
  13. 156
  14. 157
  15. 158

Posts by SBTlauien

  1. SBTlauien African Astronaut
    "4 years old"...oh dear.
  2. SBTlauien African Astronaut
    Those of you who frequent hacker news probably already read this but I think this is highly relevant and super fucking cool: http://arstechnica.com/information-technology/2016/02/researchers-create-super-low-power-wi-fi/

    Combined with solar power...

    http://hacknmod.com/hack/diy-portable-solar-powered-wi-fi-repeater/
  3. SBTlauien African Astronaut
    Is it possible to build a router that reaches miles away? I've seen things on Amazon that are shaped like large guns and are pointed at each other from a long ways away to share a WIFI signal, but can I just straight up broadcast my access point throughout a large portion of my city, allow people to connect to it?
  4. SBTlauien African Astronaut
    A while back, I came across the open-source program below that'll skim NFC data using two Android phones. I don't have a NFC card yet(let alone EMV) because my card expires later this year, so I haven't been able to test this program out. The program itself does compile and run though

    https://sourceforge.net/projects/nfcproxy/

    Does anyone know what kind of data passes during an NFC transaction? Is it track1+track2 data, or is it something else?
  5. SBTlauien African Astronaut
    How would you make it? You can buy them for a few hundred dollars but I don't think it's live. You have to take it off and get it off and get the routes after. Which would suck because unless you knew somewhere for sure they would be you couldn't get it.

    A few hunder dollars and it's not live...rip off.

    I'd just make two Android apps, one that goes on the phone(phone A) that goes onto the vehicle, the other will go onto the phone(phone B) that'll be used to view where the vehicle is. The app that's on the phone A would simply get it's own GPS location every minute(this would configurable) and send the location to an email address(any email address would do, but it would be bet to have a list of email address to go through, due to email providers limiting the amount of emails in a day). The phone(phone B) that I have to view where the vehicle is, would simply check that(or those) email adress(es) every 30 seconds(configured to half of the time that is set on phone A), retrieve the GPS data, and present it on a map(most likely Google Maps).
  6. SBTlauien African Astronaut
    You need to turn on javascript nigga.
  7. SBTlauien African Astronaut
    I'd be careful with job hopping that much. Employers are going to stop hiring you, even for the low skill/low pay jobs.
  8. SBTlauien African Astronaut
    make the domain something like wiggasin.space
  9. SBTlauien African Astronaut
    Packet radio?

    This is kind of an interesting concept. I know that I can use my Raspberry PI to create a radio station on AM/FM. From searching a little, it looks like it's been done for a while. The problem would be packet loss.

    This didn't require anything special to get running...

    https://github.com/Make-Magazine/PirateRadio
  10. SBTlauien African Astronaut
    I would assume so. I've heard that everything can be pulled via forensics.
  11. SBTlauien African Astronaut
    Sky Sports News?

    Silly Stupid Niggas.
  12. SBTlauien African Astronaut
    But what if there i no overdraft? Which I am guessing with Gift cards you cannot get?

    If there is $20 on it surely you cannot spend more then $20 no matter what.

    The account balance went negative though. They're just hard to overdraft, just like prepaid debit cards that require a SSN. Usually the over draft comes via a mandatory charge.
  13. SBTlauien African Astronaut
    Go meet him but dress exactly like him and put fake little star tattoos near your eye and hold a microphone and be with a cameraman waiting for him.
  14. SBTlauien African Astronaut
    ?
  15. SBTlauien African Astronaut
    Is a NI for life?
  16. SBTlauien African Astronaut
    If I understand how this works correctly then this fancy card reader thing is just something to read a magnetic stripe and transform that into an electric signal ie. take apart an analog tape player, get the reader-head out, solder it to a 3.5mm jack, plug jack into your microphone input and run some audio recording software, scan card and you got the data.

    I'd assume this is a lot more complicated with the chip-n-pin cards recently rolled out in the US :/.

    Yes, here's a tutorial with pictures...

    http://web.archive.org/web/20070214070116/http://www.timmatheson.com/91/

    Here's one with a writer as well...

    http://www.gae.ucm.es/~padilla/extrawork/stripe.html

    How does that work?

    Surely the card would read how much is on there ie $20.

    They charge the card for the base amount and then later they charge the tip, causing it to overdraft.
  17. SBTlauien African Astronaut
    I don't really understand how drug dogs work. Like to they need to be trained separately for each drug? Obviously different drugs smell different, unless there's some super common filler or something that they detect. It couldn't even be classes of drugs right? Like if rover the drug dog jumped every kid with an adderall script no one would get through an airport ever.

    According to the video below, the officer takes the dog in several circles around the car, and when the officer taps the car the dog will jump at the tapping and that's the signal that there's drugs in the car, allowing a legal search.

  18. SBTlauien African Astronaut
    Go On Alphbay via TOR

    Is betabay considered the best/most popular, underground marketplace?
  19. SBTlauien African Astronaut
    Edit: Your code didn't seem to work for me, but I modified it just one little line and now it works.


    #include <unistd.h>
    #include <stdio.h>
    #include <sys/socket.h>
    #include <netinet/ip.h>
    #include <netinet/tcp.h>
    #include <string.h>
    #include <stdlib.h>

    #define PCKT_LEN 8192
    #define MSG_LEN 64

    struct ipheader {
    unsigned char iph_ihl :5, /* Little-endian */
    iph_ver :4;
    unsigned char iph_tos;
    unsigned short int iph_len;
    unsigned short int iph_ident;
    unsigned char iph_flags;
    unsigned short int iph_offset;
    unsigned char iph_ttl;
    unsigned char iph_protocol;
    unsigned short int iph_chksum;
    unsigned int iph_sourceip;
    unsigned int iph_destip;
    };

    struct tcpheader {
    unsigned short int tcph_srcport;
    unsigned short int tcph_destport;
    unsigned int tcph_seqnum;
    unsigned int tcph_acknum;
    unsigned char tcph_reserved :4, tcph_offset :4;
    unsigned int tcp_res1 :4, /*little-endian*/
    tcph_hlen :4, /*length of tcp header in 32-bit words*/
    tcph_fin :1, /*Finish flag "fin"*/
    tcph_syn :1, /*Synchronize sequence numbers to start a connection*/
    tcph_rst :1, /*Reset flag */
    tcph_psh :1, /*Push, sends data to the application*/
    tcph_ack :1, /*acknowledge*/
    tcph_urg :1, /*urgent pointer*/
    tcph_res2 :2;
    unsigned short int tcph_win;
    unsigned short int tcph_chksum;
    unsigned short int tcph_urgptr;
    char tcph_msg[MSG_LEN];
    };

    unsigned short csum(unsigned short *buf, int len) {
    unsigned long sum;
    for (sum = 0; len > 0; len--){
    sum += *buf++;
    }
    sum = (sum >> 16) + (sum & 0xffff);
    sum += (sum >> 16);
    return (unsigned short) (~sum);
    }

    int main(int argc, char *argv[]) {
    int sd;
    // No data, just datagram
    char buffer[PCKT_LEN + MSG_LEN];
    // The size of the headers
    struct ipheader *ip = (struct ipheader *) buffer;
    struct tcpheader *tcp = (struct tcpheader *) (buffer + sizeof(struct ipheader));
    struct sockaddr_in sin, din;
    int one = 1;
    const int *val = &one;

    memset(buffer, 0, PCKT_LEN + MSG_LEN);

    if (argc != 6) {
    printf("- Invalid parameters!!!\n");
    printf("- Usage: %s <source hostname/IP> <source port> <target hostname/IP> <target port> <data>\n", argv[0]);
    exit(-1);
    }

    sd = socket(PF_INET, SOCK_RAW, IPPROTO_TCP);
    if (sd < 0) {
    perror("socket() error");
    exit(-1);
    } else {
    printf("socket()-SOCK_RAW and tcp protocol is OK.\n");
    }
    // The source is redundant, may be used later if needed
    // Address family
    sin.sin_family = AF_INET;
    din.sin_family = AF_INET;
    // Source port, can be any, modify as needed
    sin.sin_port = htons(atoi(argv[2]));
    din.sin_port = htons(atoi(argv[4]));
    // Source IP, can be any, modify as needed
    sin.sin_addr.s_addr = inet_addr(argv[1]);
    din.sin_addr.s_addr = inet_addr(argv[3]);
    // IP structure
    ip->iph_ihl = 5;
    ip->iph_ver = 4;
    ip->iph_tos = 16;
    ip->iph_len = sizeof(struct ipheader) + sizeof(struct tcpheader);
    ip->iph_ident = htons(54321);
    ip->iph_offset = 0;
    ip->iph_ttl = 64;
    ip->iph_protocol = 6; // TCP
    ip->iph_chksum = 0; // Done by kernel

    // Source IP, modify as needed, spoofed, we accept through command line argument
    ip->iph_sourceip = inet_addr(argv[1]);
    // Destination IP, modify as needed, but here we accept through command line argument
    ip->iph_destip = inet_addr(argv[3]);

    // The TCP structure. The source port, spoofed, we accept through the command line
    tcp->tcph_srcport = htons(atoi(argv[2]));
    // The destination port, we accept through command line
    tcp->tcph_destport = htons(atoi(argv[4]));
    tcp->tcph_seqnum = htonl(1);
    tcp->tcph_acknum = 0;
    tcp->tcph_offset = 5;
    tcp->tcph_syn = 1;
    tcp->tcph_ack = 0;
    tcp->tcph_win = htons(32767);
    tcp->tcph_chksum = 0; // Done by kernel
    tcp->tcph_urgptr = 0;
    [B] strncpy(tcp->tcph_msg, argv[5], MSG_LEN);[/B]
    // IP checksum calculation
    // Calculate the ip len after adding data
    ip->iph_len = sizeof(struct ipheader) + sizeof(struct tcpheader) + strlen(tcp->tcph_msg);
    // IP checksum calculation
    ip->iph_chksum = csum((unsigned short *) buffer, (sizeof(struct ipheader) + sizeof(struct tcpheader)));

    // Inform the kernel do not fill up the headers' structure, we fabricated our own
    if (setsockopt(sd, IPPROTO_IP, IP_HDRINCL, val, sizeof(one)) < 0) {
    perror("setsockopt() error");
    exit(-1);
    } else {
    printf("setsockopt() is OK\n");
    }
    printf("Using:::::Source IP: %s port: %u, Target IP: %s port: %u.\n", argv[1], atoi(argv[2]), argv[3], atoi(argv[4]));

    // sendto() loop, send every 2 second for 50 counts
    unsigned int count;
    for (count = 0; count < 20; count++) {
    if (sendto(sd, buffer, ip->iph_len, 0, (struct sockaddr *) &sin, sizeof(sin)) < 0){ // Verify
    perror("sendto() error");
    exit(-1);
    } else {
    printf("Count #%u - sendto() is OK\n", count);
    }
    sleep(2);
    }
    close(sd);
    return 0;
    }


    Thank you.
  20. SBTlauien African Astronaut
    Those javascript and php scripts wont work in my email. The form just pushes the two String fields to one of my email addresses.

    As far as other webpage/website copiers, do any of them do an exact copy of the site without errors? I'm not sure if I wasn't using HTTrack correctly, but it didn't copy certain websites correctly.
  1. 1
  2. 2
  3. 3
  4. ...
  5. 132
  6. 133
  7. 134
  8. 135
  9. 136
  10. 137
  11. ...
  12. 155
  13. 156
  14. 157
  15. 158
Jump to Top