1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
| INT_PTR __stdcall DialogFunc(HWND hDlg, UINT a2, WPARAM a3, LPARAM a4){ HMODULE ModuleHandleW; HICON IconW; HMODULE v7; HWND DlgItem; HCURSOR CursorW; CHAR String[256]; CHAR v11[256]; CHAR Text[256]; char Source[36]; char v14[24];
if ( a2 == 16 ) { EndDialog(hDlg, 0); return 0; } if ( a2 == 272 ) { ModuleHandleW = GetModuleHandleW(0); IconW = LoadIconW(ModuleHandleW, (LPCWSTR)0x67); SetClassLongA(hDlg, -14, (LONG)IconW); v7 = GetModuleHandleW(0); CursorW = LoadCursorW(v7, (LPCWSTR)0x66); DlgItem = GetDlgItem(hDlg, 1); SetClassLongA(DlgItem, -12, (LONG)CursorW); return 1; } if ( a2 != 273 || (unsigned __int16)a3 != 1 ) return 0; memset(String, (unsigned __int16)a3 - 1, sizeof(String)); memset(v11, 0, sizeof(v11)); memset(Text, 0, sizeof(Text)); GetDlgItemTextA(hDlg, 1001, String, 256); GetDlgItemTextA(hDlg, 1002, v11, 256); if (strstr(String,"@") && strstr(String,".") && strstr(String,".")[1] && strstr(String,"@")[1] != 46){ strcpy(v14, "Registration failure."); strcpy(Source, "Registration Success!\nYour flag is:"); if ( strlen(v11) == 16 && v11[0] == 67 && v11[15] == 88 && v11[1] == 90 && v11[14] == 65 && v11[2] == 57 && v11[13] == 98 && v11[3] == 100 && v11[12] == 55 && v11[4] == 109 && v11[11] == 71 && v11[5] == 113 && v11[10] == 57 && v11[6] == 52 && v11[9] == 103 && v11[7] == 99 && v11[8] == 56 ){ strcpy_s(Text, 0x100u, Source); strcat_s(Text, 0x100u, v11); } else{ strcpy_s(Text, 0x100u, v14); } } else{ strcpy_s(Text, 0x100u, "Your E-mail address in not valid."); } MessageBoxA(hDlg, Text, "Registeration", 0x40u); return 1; }
|