Buenas, por si a alguien le interesa se puede solucionar así:
Nos bajamos el aircrack-ng-1.0-rc3
Vamos al fichero: aircrack-ng-1.0-rc3\src\aireplay-ng.c
Buscamos esto:
printf("Still nothing, quitting with 384 bytes? [y/n] \n");
fflush( stdout );
ret=0;
while(!ret) ret = scanf( "%s", tmpbuf );
printf( "\n" );
Y lo dejamos así:
printf("Still nothing, quitting with 384 bytes? [y/n] \n");
fflush( stdout );
ret=1;
//while(!ret) ret = scanf( "%s", tmpbuf );
tmpbuf[0] = 'y';
printf( "\n" );
De esta manera obtendremos:
Now you can build a packet with packetforge-ng out of that 384 bytes keystream
Sin tener que pulsar el 'y' que nos pide.
