~singpolyma/biboumi

2380a84ba5d304861cd21eb3a2e57d76e32536a0 — Florent Le Coz 8 years ago f904d57
Make sure the user-provided username does not contain spaces
1 files changed, 9 insertions(+), 1 deletions(-)

M src/xmpp/biboumi_adhoc_commands.cpp
M src/xmpp/biboumi_adhoc_commands.cpp => src/xmpp/biboumi_adhoc_commands.cpp +9 -1
@@ 13,6 13,8 @@

#include <louloulibs.h>

#include <algorithm>

using namespace std::string_literals;

void DisconnectUserStep1(XmppComponent* xmpp_component, AdhocSession&, XmlNode& command_node)


@@ 259,7 261,13 @@ void ConfigureIrcServerStep2(XmppComponent*, AdhocSession& session, XmlNode& com

          else if (field->get_tag("var") == "username" &&
                   value && !value->get_inner().empty())
            options.username = value->get_inner();
            {
              auto username = value->get_inner();
              // The username must not contain spaces
              std::replace(&username[0], &username[username.size() - 1],
                           ' ', '_');
              options.username = username;
            }

          else if (field->get_tag("var") == "realname" &&
                   value && !value->get_inner().empty())