#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
unsigned char submit[6];
void play(){
int i;
printf("Submit your 6 lotto bytes : ");
fflush(stdout);
int r;
r = read(0, submit, 6);
printf("Lotto Start!\n");
//sleep(1);
// generate lotto numbers
int fd = open("/dev/urandom", O_RDONLY);
if(fd==-1){
printf("error. tell admin\n");
exit(-1);
}
unsigned char lotto[6];
if(read(fd, lotto, 6) != 6){
printf("error2. tell admin\n");
exit(-1);
}
for(i=0; i<6; i++){
lotto[i] = (lotto[i] % 45) + 1; // 1 ~ 45
}
close(fd);
// calculate lotto score
int match = 0, j = 0;
for(i=0; i<6; i++){
for(j=0; j<6; j++){
if(lotto[i] == submit[j]){
match++;
}
}
}
// win!
if(match == 6){
system("/bin/cat flag");
}
else{
printf("bad luck...\n");
}
}
void help(){
printf("- nLotto Rule -\n");
printf("nlotto is consisted with 6 random natural numbers less than 46\n");
printf("your goal is to match lotto numbers as many as you can\n");
printf("if you win lottery for *1st place*, you will get reward\n");
printf("for more details, follow the link below\n");
printf("http://www.nlotto.co.kr/counsel.do?method=playerGuide#buying_guide01\n\n");
printf("mathematical chance to win this game is known to be 1/8145060.\n");
}
int main(int argc, char* argv[]){
// menu
unsigned int menu;
while(1){
printf("- Select Menu -\n");
printf("1. Play Lotto\n");
printf("2. Help\n");
printf("3. Exit\n");
scanf("%d", &menu);
switch(menu){
case 1:
play();
break;
case 2:
help();
break;
case 3:
printf("bye\n");
return 0;
default:
printf("invalid menu\n");
break;
}
}
return 0;
}
urandom에 대한 취약점인줄 알고 찾아보다가 관련 문제들만 보고 각종 장비에서 발생하는 노이즈들을 저장시킨
엔트로피 풀로부터 seed를 얻어 의사 난수를 생성하게 된다는 것까지만 배웠다.
실제 이 문제에서의 문제점은 play()에서 sumbit과 lotto를 비교하는 조건검사 로직이 이상한 건데,
반복문 하나로 6번만 돌면 되는 걸, 반복문 2개로 36번 돌고 있고
이로써, 6개를 다 맞춰야되는 게 아니라 한 글자만 맞춰도 *6만큼 맞아서 6이 성립된다.
1~45 중에 적당히 아무 값이나 똑같이 6개를 넣으면 나쁘지 않은 횟수로 맞출 수 있다.
'Pwnable.kr' 카테고리의 다른 글
Pwnable.kr [cmd2] (0) | 2019.05.03 |
---|---|
Pwnable.kr [cmd1] (0) | 2019.05.02 |
Pwnable.kr [blackjack] (0) | 2019.05.01 |
Pwnable.kr [coin1] (0) | 2019.05.01 |
Pwnable.kr [shellshock] (0) | 2019.05.01 |