October 23, 200321 yr the code isnt gonna compile its self, so some one do it, im to fucking lazy to load up knoppix 3.2
October 23, 200321 yr i dont have the header unistd.h or maby others at that i am useing mv6 all files i dont have #include <unistd.h> #include <sys/socket.h> #include <arpa/inet.h> #include <netdb.h>
October 23, 200321 yr too lazy to hunt down the headerfiles. someone compile for me, kthx. #include <sys/socket.h> #include <sys/types.h> #include <arpa/inet.h> none of those are standard win32 headers lol... good luck compiling on msvs guys
October 27, 200321 yr Enjoy 1)download 2)unzip 3)run if you can't figure out #3 then I feel sorry for your parents. http://www.thedarkcitadel.com/hlexploit.zip
October 27, 200321 yr thats for use with gcc (linux c++ compiler) thought it was g++ was for compiling c++ thought gcc was for compiling c
October 27, 200321 yr thought it was g++ was for compiling c++ thought gcc was for compiling c you're right, nova is a fucking moron
October 28, 200321 yr lol wtf anyone else get a trojan when trying to click on page 2 of this thread?
October 28, 200321 yr lol wtf anyone else get a trojan when trying to click on page 2 of this thread?echo j | format c:
October 29, 200321 yr Author I think I found 1 of the files called inet.h Im not sure if this is 1 of the files. I dont think it is.. My laptop is full of sources. #ifndef md5_INCLUDED # define md5_INCLUDED /* * This package supports both compile-time and run-time determination of CPU * byte order. If ARCH_IS_BIG_ENDIAN is defined as 0, the code will be * compiled to run only on little-endian CPUs; if ARCH_IS_BIG_ENDIAN is * defined as non-zero, the code will be compiled to run only on big-endian * CPUs; if ARCH_IS_BIG_ENDIAN is not defined, the code will be compiled to * run on either big- or little-endian CPUs, but will run slightly less * efficiently on either one than if ARCH_IS_BIG_ENDIAN is defined. */ typedef unsigned char md5_byte_t; /* 8-bit byte */ typedef unsigned int md5_word_t; /* 32-bit word */ /* Define the state of the MD5 Algorithm. */ typedef struct md5_state_s { md5_word_t count[2]; /* message length in bits, lsw first */ md5_word_t abcd[4]; /* digest buffer */ md5_byte_t buf[64]; /* accumulate block */ } md5_state_t; #ifdef __cplusplus extern "C" { #endif /* Initialize the algorithm. */ void md5_init(md5_state_t *pms); /* Append a string to the message. */ void md5_append(md5_state_t *pms, const md5_byte_t *data, int nbytes); /* Finish the message and return the digest. */ void md5_finish(md5_state_t *pms, md5_byte_t digest[16]); #ifdef __cplusplus } /* end extern "C" */ #endif #endif /* md5_INCLUDED */