You are on page 1of 1

/*

in[S]eguridad [I]nformatica
*/
#include <stdio.h>
int main(){
char claveok[] = "DragonJAR";
char password[10];
printf("\n\n");
printf(" (~|
|| |-)
| \n");
printf(" _)| |(/||| |-(( )( ) | \n\n\n");
printf(" . _ |~(~~| _ _ _. _| _ _| |~~|~~| _ |` _ _ _ _ _ _|_. _ _ \n");
printf(" || || _) |(/_(_||_|| |(_|(_|(_| | _|_ || |~|~(_)| | | |(_| | |(_(_| \n"
);
printf(" |_ _| _| |_ _| \n\n");
printf(" http://shellrootsecurity.blogspot.com/ \n\n\n\n\n\n");
while (1){
printf("Ingrese el codigo de Seguridad --> ");
scanf("%s", password);
if (strcmp(password, claveok) == 0 ){
break;
}//End If
}//End While
printf("\nAcceso concedido... \n\n");
system("Pause"); //Envio de Pause al CMD
return 0; //Retorno cuando se termina el main
}//End main

You might also like