20 lines
683 B
Plaintext
20 lines
683 B
Plaintext
Welcome to queen3!
|
|
-----
|
|
Programming in C is often error prone, so we decided to try a new
|
|
language. In contrast to C, it is much safer, but these newer
|
|
languages often use some core libraries for fancy constructs and
|
|
language features. So the disassembly looks kind of ugly.
|
|
|
|
Nevertheless, are you able to reverse this program?
|
|
|
|
You can reach the flagservice with
|
|
nc localhost 31338
|
|
|
|
|
|
Hints
|
|
-----
|
|
First, identify the language and try to understand the use of the called language core functions.
|
|
Strings are not always terminated with a null-byte. It might be helpful to
|
|
identify some strings and create char-arrays for them in the disassembler before
|
|
reversing the whole prorgam.
|