You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@qpid.apache.org by "Chris Richardson (JIRA)" <ji...@apache.org> on 2014/07/25 12:36:38 UTC

[jira] [Created] (QPID-5927) Broker does not support whitespace in passwords in SSL password file

Chris Richardson created QPID-5927:
--------------------------------------

             Summary: Broker does not support whitespace in passwords in SSL password file
                 Key: QPID-5927
                 URL: https://issues.apache.org/jira/browse/QPID-5927
             Project: Qpid
          Issue Type: Bug
          Components: C++ Broker
    Affects Versions: 0.28
            Reporter: Chris Richardson


qpid/sys/ssl/util.cpp reads passwords from the password file with
...
    std::string password;
    file >> password;
...

The stream operator stops reading at the first whitespace character so a password of eg: "this is a password"  (considered valid by certutil) will not be properly parsed by the broker.

Possibly use std::getline(file, password); or a manipulator instead.




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

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@qpid.apache.org
For additional commands, e-mail: dev-help@qpid.apache.org