aboutsummaryrefslogtreecommitdiffstats
path: root/src/command/AllCommands.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-08-12 15:33:45 +0200
committerMax Kellermann <max@duempel.org>2014-08-12 15:33:45 +0200
commitcf797657ed619f4908a3d47b7e37c25fb7133454 (patch)
tree8015c408978791a2e7c55b84ac84b68058aebf60 /src/command/AllCommands.cxx
parentc597538b4023fd1f40bbb66f79caa508b223a8f2 (diff)
downloadmpd-cf797657ed619f4908a3d47b7e37c25fb7133454.tar.gz
mpd-cf797657ed619f4908a3d47b7e37c25fb7133454.tar.xz
mpd-cf797657ed619f4908a3d47b7e37c25fb7133454.zip
AllCommands: close connection after syntax error
Stop HTTP clients from exploiting MPD via forged POST requests.
Diffstat (limited to 'src/command/AllCommands.cxx')
-rw-r--r--src/command/AllCommands.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/command/AllCommands.cxx b/src/command/AllCommands.cxx
index d29950eeb..6a4b18198 100644
--- a/src/command/AllCommands.cxx
+++ b/src/command/AllCommands.cxx
@@ -369,7 +369,9 @@ command_process(Client &client, unsigned num, char *line)
current_command = nullptr;
- return CommandResult::ERROR;
+ /* this client does not speak the MPD protocol; kick
+ the connection */
+ return CommandResult::FINISH;
}
unsigned argc = 1;