Oct 23, 2014 • Break

Wanted: Translator

Description

We are in desperate need of a translator who understands the languages of varoius Indian tribes. We already know how to speak to the Apache tribe via HTTP but we have some stuff missing. We offer 5$ per successfully translated language.

(That means you can send us 7 solutions to this challenge and will receive 5 points for each.)

SMTP
GOPHER
POP3
FINGER
TFTP
IRC
NNTP

Solution

We realised that there was a tftp server running since it was possible to connect with the following command.

tftp wildwildweb.fluxfingers.net

Afterwards we used the default ports and programs to connect to the other protocols:

SMTP

3.2.2. GOPHER

3.2.3. POP3

3.2.4. FINGER

3.2.5. TFTP

The port was open but TFTP does not support a list command, so we wrote a script. Guessing the name of the file is another solution.

perl -MNet::TFTP -e '$tftp = Net::TFTP->new("wildwildweb.fluxfingers.net"); $tftp->get("flag", \*STDOUT);'

connection to tftp:

tftp wildwildweb.fluxfingers.net
tftp> get flag

Here is the file, including a bonus text adventure.

3.2.6. IRC

3.2.7. NNTP

5 points per challenge makes 35 points in total.

(joint work Chris, Joe, Mike, Sam)