• No results found

FTP Peach Pit Data Sheet

N/A
N/A
Protected

Academic year: 2021

Share "FTP Peach Pit Data Sheet"

Copied!
9
0
0

Loading.... (view fulltext now)

Full text

(1)

FTP Peach Pit Data Sheet

Peach Fuzzer, LLC

v3.6.94

(2)

Copyright © 2015 Peach Fuzzer, LLC. All rights reserved.

This document may not be distributed or used for commercial purposes without

the explicit consent of the copyright holders.

Peach Fuzzer® is a registered trademark of Peach Fuzzer, LLC.

Peach Fuzzer contains Patent Pending technologies.

While every precaution has been taken in the preparation of this book, the

publisher and authors assume no responsibility for errors or omissions, or for

damages resulting from the use of the information contained herein.

Peach Fuzzer, LLC

1122 E Pike St

Suite 1064

(3)

File Transfer Protocol (FTP)

• Peach Pit: FTP

• Direction: Client, Server

• Supported Platforms: Windows, Linux, OS X

File Transfer Protocol (FTP) is a standard network protocol used to transfer files from one host to another host over a TCP-based network, such as the Internet.

FTP is built on a client-server architecture and uses separate control and data connections between the client and the server. FTP users may authenticate themselves using a clear-text sign-in protocol, normally in the form of a username and password, but can connect anonymously if the server is configured to allow it.

Specifications

Specification Title

RFC 959 File Transfer Protocol (FTP).

RFC 697 CWD Command of FTP

RFC 775 Directory Oriented FTP Commands

Use Cases

Messages Specification

FTP Protocol RFC959

CWD Command RFC 697

Directory Oriented Commands RFC 775

Configuration

Target Configuration

An FTP server is required to test the client side of the FTP pit. On Linux, ftpd can be downloaded using apt-get.

Required Pit Configuration Changes

(4)

SourceIPv4

IP address of the interface on the local machine. SourcePort

ftp port number of the local machine. TargetPort

ftp port number of the target host machine. Interface

Name of local interface (used for monitoring). FtpUser

Username of the remote ftp account. FtpPass

Password for the associated ftp user account. DataPort

The port used to listen for incoming data connections. Program

The client program to test when fuzzing as the server.

Optional Pit Configuration Changes

Strategy

Fuzzing strategy Peach will use for testing. LoggerPath

Path to folder where logs will be stored. Agent

Agent to run depending on the target OS. Do not change this value. PitLibraryPath

Path to the relative base directory where all pits are located. Timeout

How long to wait in milliseconds for incoming data. SendTimeout

(5)

AcceptTimeout

How long to wait in milliseconds for incoming connections to arrive. ConnectTimeout

How long to wait in milliseconds for outgoing connections to complete.

Configure Monitoring

Monitoring must be configured to provide fault detection, data collection, and automation as needed.

Running

Single test debug run

Listing 1. Fuzzing an FTP client in active mode

peach -1 --debug FTP_Client.xml

Listing 2. Fuzzing an FTP client in passive mode

peach -1 --debug FTP_Client_Passive.xml

Listing 3. Fuzzing an FTP Server in active mode

peach -1 --debug FTP_Server.xml

Listing 4. Fuzzing an FTP Server in passive mode

peach -1 --debug FTP_Server_Passive.xml

Full test run

Listing 5. Fuzzing an FTP client in active mode

peach FTP_Client.xml

Listing 6. Fuzzing an FTP client in passive mode

(6)

Listing 7. Fuzzing an FTP server in active mode

peach FTP_Server.xml

Listing 8. Fuzzing an FTP server in passive mode

peach FTP_Server_Passive.xml

Examples

Example 1. Sample FTP Client Configuration File

Example configuration targeting the ftpd server on Linux.

First we must install ftpd; for this example we assume you are running on Ubuntu or Debian. For other platforms follow the platform specific installation instructions for ftpd._

sudo apt-get install ftpd

<?xml version="1.0" encoding="utf-8"?>

<PitDefines> <All>

<Ipv4 key="SourceIPv4"

value="127.0.0.1"

name="Source IPv4 Address"

description="The IPv4 address of the machine running Peach Fuzzer. The IPv4 address can be found on Windows by running 'ipconfig' and looking for the 'IPv4 Address' field. For Linux run 'ifconfig' and look for 'inet addr' field. For OS X run 'ifconfig' and look for the 'inet' field."/>

<Range

key="CommandPort"

value="21"

min="0" max="65535"

name="FTP Command Port"

description="Port number for the main FTP communication. Typically this is port 21."

/> <Range

key="DataPort"

value="31337"

min="0" max="65535"

name="FTP Data Port"

(7)

transfer file data and should not be port 21." /> <Ipv4 key="TargetIPv4"

value="127.0.0.1"

name="Target IPv4 Address"

description="The IPv4 address of the target machine or device. The IPv4 address can be found on Windows by running 'ipconfig' and looking for the 'IPv4 Address' field. For Linux run 'ifconfig' and look for 'inet addr' field. For OS X run 'ifconfig' and look for the 'inet' field." />

<Range key="AcceptTimeout"

value="5000"

min="0" max="10000000"

name="Timeout"

description="Timeout in milliseconds to wait for client connection. During fuzzing a timeout failure will cause the fuzzer to skip to the next iteration."/>

<Range key="Timeout"

value="5000"

min="0" max="10000000"

name="Timeout"

description="Timeout in milliseconds to wait for data to be send or received. During fuzzing a timeout failure will cause the fuzzer to skip to the next iteration."/> <String key="LoggerPath"

value="logs/ftp_server_passive/"

name="Logger Path"

description="The directory where Peach will save the log produced when fuzzing." /> <Strategy key="Strategy"

value="Random"

name="Mutation Strategy"

description="The mutation strategy to use when fuzzing." /> <String key="PitLibraryPath"

value="."

name="Pit Library Path"

description="The path to the root of the pit library."/> </All>

</PitDefines>

Example 2. Sample FTP Server Configuration File

Example configuration targeting the ftpd server on Linux.

(8)

other platforms follow the platform specific installation instructions for ftpd._

sudo apt-get install ftpd

<?xml version="1.0" encoding="utf-8"?>

<PitDefines> <All>

<String key="FtpUser"

value="ftpuser"

name="FTP Username"

description="FTP username used with the FTP Password to authenticate to the FTP server being tested."/>

<String key="FtpPass"

value="ftpuser123"

name="FTP Password"

description="FTP password used with the FTP Username to authenticate to the FTP server being tested."/>

<Ipv4 key="SourceIPv4"

value="127.0.0.1"

name="Source IPv4 Address"

description="The IPv4 address of the machine running Peach Fuzzer. The IPv4 address can be found on Windows by running 'ipconfig' and looking for the 'IPv4 Address' field. For Linux run 'ifconfig' and look for 'inet addr' field. For OS X run 'ifconfig' and look for the 'inet' field."/>

<Ipv4 key="TargetIPv4"

value="127.0.0.1"

name="Target IPv4 Address"

description="The IPv4 address of the target machine or device. The IPv4 address can be found on Windows by running 'ipconfig' and looking for the 'IPv4 Address' field. For Linux run 'ifconfig' and look for 'inet addr' field. For OS X run 'ifconfig' and look for the 'inet' field." />

<Range key="TargetPort"

value="21"

min="0"

max="65535"

name="Target Port"

description="The target or destination port the network packet is sent to."/> <Range key="DataPort"

value="31337"

min="0" max="65535"

name="FTP Data Port"

description="Port number to use for data channel. This is a secondary port used to transfer file data and should not be port 21." />

(9)

<Range key="Timeout"

value="5000"

min="0" max="10000000"

name="Timeout"

description="Timeout in milliseconds to wait for data to be send or received. During fuzzing a timeout failure will cause the fuzzer to skip to the next iteration."/> <String key="LoggerPath"

value="logs/ftp_client/"

name="Logger Path"

description="The directory where Peach will save the log produced when fuzzing." /> <Strategy key="Strategy"

value="Random"

name="Mutation Strategy"

description="The mutation strategy to use when fuzzing." /> <String key="PitLibraryPath"

value="."

name="Pit Library Path"

description="The path to the root of the pit library."/> </All>

References

Related documents

From the applicable performance curve, at the percent of load calculated from (2) above and at the compressor inlet temperature, read the percent of design heat rate... GE

• Continue to support attaching a phase2 with IPv4 selectors to a phase1 with IPv4 address (IPv4 over IPv4).. •

So, it is important to understand the typical loading that a particular KVM-over-IP system will place on the network, as well as considering the usability of

When the respondents were asked about the event, and about the creation of skills development opportunities for the local community, the pre-event responses

A host with IPv4 address sends a request to an IPv6 enabled server on Internet that does not understand IPv4 address.. In this scenario, the NAT-PT device can help

• The entire 128-bit IPv4-compatible IPv6 address is used as the IPv6 address of a node and the IPv4 address embedded in the low-order 32 bits is used as the IPv4 address of

A VNC Viewer Plus user must enter a network address that uniquely identifies AMT Server running on the host computer in order to connect. A network address can be an IPv4 address,

Include the virtual-address statement and specify 10.17.2.1 as the IPv4 address of the virtual router at the [edit logical-systems Trust1 interfaces irb unit 17 family inet