// s0t4ipv6@shellcode.com.ar
#include <sys/types.h>
#include <time.h>                       // Seed for randomize mail
#include <ctype.h>

#define LEN_name	25
#define LEN_domain	25

main() {
        int     complete=0;
        int     where;
        char    *email;

        // Set seed
        srand( (unsigned int)time(NULL) );
        email= (char *)calloc(LEN_name + LEN_domain + 7, sizeof(char));

        while (complete != LEN_name + LEN_domain){
                where = (int ) (rand() % 127) ;
                if (isxdigit(where)){
                        memcpy(email+complete, (char *)&where, 1);
                        // i need a fancy snail
                        if ( complete == LEN_name )
                                { complete++; *(email+complete)='@'; }
                        complete++;
                        }
        }
        // Now... my dotcomdotar
        memcpy(email+complete, ".com.ar", 7);
	printf ("%s\n",email);
}

