challenges
Game 10
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
| ❯ 7z x reversing.zip
❯ file reversing.exe reversing.exe: PE32 executable for MS Windows 4.00 (GUI), Intel i386 Mono/.Net assembly, 3 sections
# hex view 2.t.h.e.T.@.P... A.u.t.h.k.e.y. . :. .D.i.d. .U. . u.s.e. .t.h.e. . P.e.i.d.?...S.u. N.i.N.a.T.a.S... ..T.r.y. .a.g.a. i.n.!...e.x.p.l. o.r.e.r...h.t.t. p.:././.s.u.n.i. n.a.t.a.s...c.o. m...t.e.x.t.B.o. x.1...b.u.t.t.o. n.1...O.K...t... ..l.a.b.e.l.2... M.@.d.e. .b.y. . 2.t.h.e.T.0.P... b.u.t.t.o.n.2... Q.U.I.T...F.o.r. m.1...W.i.n.d.o. w.s.F.o.r.m.s.A. p.p.l.i.c.a.t.i. o.n.1...P.r.o.p. e.r.t.i.e.s...R. e.s.o.u.r.c.e.s.
programe based on WinForms
|
guess or
use dnSpyEx and drag
the file(run in windows)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
private void button1_Click(object sender, EventArgs e) { string text = "2theT@P"; string text2 = "Authkey : Did U use the Peid?"; if (this.textBox1.Text == text) { MessageBox.Show(text2, "SuNiNaTaS"); this.textBox1.Text = ""; return; } MessageBox.Show("Try again!", "SuNiNaTaS"); this.textBox1.Text = ""; }
|