【Writeup】Pwnable.kr 0x02 collision

weixin_33890499發表於2017-07-29

0x02 col

題目描述:

Daddy told me about cool MD5 hash collision today.
I wanna do something like that too!

ssh col@pwnable.kr -p2222 (pw:guest)

解題思路:

ssh連線上後得到程式碼

#include <stdio.h>
#include <string.h>
unsigned long hashcode = 0x21DD09EC;
unsigned long check_password(const char* p){
    int* ip = (int*)p;
    int i;
    int res=0;
    for(i=0; i<5; i++){
        res += ip[i];
    }
    return res;
}

int main(int argc, char* argv[]){
    if(argc<2){
        printf("usage : %s [passcode]\n", argv[0]);
        return 0;
    }
    if(strlen(argv[1]) != 20){
        printf("passcode length should be 20 bytes\n");
        return 0;
    }

    if(hashcode == check_password( argv[1] )){
        system("/bin/cat flag");
        return 0;
    }
    else
        printf("wrong passcode.\n");
    return 0;
}

分析程式碼,要求是輸入一個20位元組的字串,通過check_password()函式,得到的值與hashcode的值相等,則得到flag。
分析check_password()函式,將char型別的p強制型別轉換成int型別,其中char型別是1位元組為單位,int型別4位元組為單位,而要求輸入的是20個位元組,那麼20除以4等於5,剛好與check_password()函式裡的for迴圈相吻合,所以,本題的解題要領就是通過5個部分的數字相加得到hashcode的值,那麼將hashcode,0x21DD09EC分解一下(答案不唯一),我這裡將其分解成4個0x06c5cec9和1個0x06c5cec8,在終端輸入python -c 'print 4*"\xc9\xce\xc5\x06"+"\xc8\xce\xc5\06"' | xargs ./col得到flag。

  • 這裡要注意的是數字在記憶體中是按照小端序儲存

相關文章