suninatas 10번 문제

2017. 12. 30. 22:350x02 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 = "";

            }

        }


끝~