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 "Chen He (JIRA)" <ji...@apache.org> on 2014/06/04 20:57:02 UTC

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

     [ https://issues.apache.org/jira/browse/HADOOP-10661?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Chen He updated HADOOP-10661:
-----------------------------

    Attachment: HADOOP-10661.patch

> 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
>            Assignee: Chen He
>            Priority: Minor
>         Attachments: HADOOP-10661.patch
>
>
> 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)