Public signup for this instance is disabled. Go to our Self serve sign up page to request an account. Report potential security issues privately
VsftpRepository.readResponse compares a string to a stringbuffer
if ("Not connected.".equals(response)) {
should be
if ("Not connected.".equals(response.toString())) {