Python Challenge level 19: “please!”
For level 19 I used two scripts. Hint 1: there is an email in the source with an attached file #!/usr/bin/env python import email mail=email.message_from_file(open(’19.txt’)) for part in mail.walk(): if part.get_content_maintype()==’audio’: audio=part.get_payload(decode=1) open(’19_indian.wav’, ‘wb’).write(audio) The only understandable thing in the file was the word “sorry”, and that page is not really useful. Theres more to [...]
Read the rest of this entry »