This is a crypto challenge i created for the hackthissite discord.
I have a working exploit, so I'm somewhat confident that everything works fine - still,
if you run into any issues, feel free ping Alaska#4736
.
(Yes, the flag is already viewable. I'm not hosting an instance of this. If you create your own flag, make it about equal in length)
This is a hacking challenge i made for https://discord.gg/hts.
Network Security Sam's sister, Vigenère Valary, is fascinated by encryption. As her name suggests, her favorite one is the Vigenère Cipher. However, she isn't aware of it's weaknesses just yet. Can you decode her secret message?
encrypted.txt
contains a standard english text, encoded using Vigenère with an unknown key. All characters except [a-z] have been
removed or converted to lowercase. Recover the key used to encrypt the text as well as cleartext. DM the key to Wuelle#9958, extra points
if you also guess Valaries favorite Scifi-series.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# use with https://github.com/Wuelle/Sobel-operator | |
# Create tmp directories | |
mkdir _tmp | |
mkdir _tmp/img | |
mkdir _tmp/processed | |
# Extract audio and source images from the input file | |
ffmpeg -nostdin -i input.mp4 _tmp/img/%06d.png | |
ffmpeg -nostdin -i input.mp4 _tmp/audio.mp3 |