suninatas 10번 문제
2017. 12. 30. 22:35ㆍ0x02 Reverse Engineer/0x03. Etc
728x90
바이너리를 열어보니 C# 이면서, 운이좋게 난독화 프로텍터가 적용되어있지 않다.
reflector로 열어보면 이러한 cs 파일을 발견할 수 있다.
private void button1_Click(object sender, EventArgs e)
{
string str = "2theT@P";
string text = "Authkey : Did U use the Peid?";
if (this.textBox1.Text == str)
{
MessageBox.Show(text, "SuNiNaTaS");
this.textBox1.Text = "";
}
else
{
MessageBox.Show("Try again!", "SuNiNaTaS");
this.textBox1.Text = "";
}
}
끝~
'0x02 Reverse Engineer > 0x03. Etc' 카테고리의 다른 글
suninatas 11번 문제 (0) | 2017.12.30 |
---|---|
suninatas 9번문제 (0) | 2017.12.30 |
[리버싱과 무관할수도] 백준 난쟁이문제 - bruteforce (0) | 2017.12.16 |
처음 만들어 본 64비트 크랙미 분석 (0) | 2017.11.30 |
Inline Assembly (0) | 2017.10.30 |