Skip to content

mitre-cyber-academy/2016-Forensics-200

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Strange Traffic uses an FTP server to send the regular FTP information accross a FTP connection. The anonymous login credentials for this FTP server are a username of ftp with no password.

Installation

run the following command

#!bash

docker-compose up

The FTP server is now running

Solution

The flag is sent as a response to a NOOP command. Some FTP clients will ignore the message sent by the server and display their own. As such the easiest way to get the flag is with python. Using the following will get the flag.

#!python

from ftplib import FTP
ftp = FTP('localhost')
ftp.login('ftp', '')
ftp.sendcmd('noop')

Which will have the following output

#!python

'200 The Flag is MCA-5FA6F6EB'

The packet should also be able to be found using Wireshark; however, some FTP clients don't allow for the user to trigger a NOOP command.

About

Forensics 200 challenge from the September 2016 MITRE CTF

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages