You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-issues@hadoop.apache.org by "Ted Yu (JIRA)" <ji...@apache.org> on 2014/06/04 06:46:02 UTC

[jira] [Created] (HADOOP-10661) Ineffective user/passsword check in FTPFileSystem#initialize()

Ted Yu created HADOOP-10661:
-------------------------------

             Summary: Ineffective user/passsword check in FTPFileSystem#initialize()
                 Key: HADOOP-10661
                 URL: https://issues.apache.org/jira/browse/HADOOP-10661
             Project: Hadoop Common
          Issue Type: Bug
            Reporter: Ted Yu
            Priority: Minor


Here is related code:
{code}
      userAndPassword = (conf.get("fs.ftp.user." + host, null) + ":" + conf
          .get("fs.ftp.password." + host, null));
      if (userAndPassword == null) {
        throw new IOException("Invalid user/passsword specified");
      }
{code}
The intention seems to be checking that username / password should not be null.
But due to the presence of colon, the above check is not effective.



--
This message was sent by Atlassian JIRA
(v6.2#6252)