Okay, let’s do next basic challenge.

1

We can do this manually or maybe we can write down a Python script to get the flag. That’s up to you. Just remember that the plaintext password you’ll get after translating integer codes to char, must be md5’ed. Otherwise you’ll fail the challenge.

To get the string, just put together the tranlated integer codes to char, using http://www.asciitable.com/

You can script it with Python casting each code in the given string:

>>> chr(int('ascii code'))

Once you have the string, md5 it to get the flag.