FTP
PORT
NLST
--data-binary
# Server-side
contents
REPLY PWD 257 there is rubbish all over "/this/is/the/path"
# Client-side
ftp
FTP with rubbish before name in 257-response
ftp://%HOSTIP:%FTPPORT/get/file/1217 ftp://%HOSTIP:%FTPPORT/get/file/again/1217 --ftp-method singlecwd
# Verify data after the test has been "shot"
# Strip all valid kinds of PORT and EPRT that curl can send
^PORT \d{1,3},\d{1,3},\d{1,3},\d{1,3},\d{1,3},\d{1,3}
^EPRT \|1\|\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\|\d{1,5}\|
USER anonymous
PASS ftp@example.com
PWD
CWD get/file
EPSV
TYPE I
SIZE 1217
RETR 1217
CWD /this/is/the/path
CWD get/file/again
EPSV
SIZE 1217
RETR 1217
QUIT