aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Garzik <jgarzik@exmulti.com>2013-05-02 12:26:55 -0700
committerJeff Garzik <jgarzik@exmulti.com>2013-05-02 12:26:55 -0700
commitd9dd0318e142341626619d4ec0d6eb505ee5d0fe (patch)
treef3b946a577c65d95b02fe8c5e697cf7496efd6fd
parenteef2091fe9ee39ecd8e874c91d3ab0ff023c5356 (diff)
parent9f4976afe2568a6dd4a4026292e91697bedda4b6 (diff)
downloadbitcoin-d9dd0318e142341626619d4ec0d6eb505ee5d0fe.tar.xz
Merge pull request #2601 from jgarzik/uri-validate
RPC: strictly require HTTP URI "/"
-rw-r--r--src/bitcoinrpc.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp
index 9c126fc3da..a9b73fd5a6 100644
--- a/src/bitcoinrpc.cpp
+++ b/src/bitcoinrpc.cpp
@@ -940,6 +940,11 @@ void ServiceConnection(AcceptedConnection *conn)
// Read HTTP message headers and body
ReadHTTPMessage(conn->stream(), mapHeaders, strRequest, nProto);
+ if (strURI != "/") {
+ conn->stream() << HTTPReply(HTTP_NOT_FOUND, "", false) << std::flush;
+ break;
+ }
+
// Check authorization
if (mapHeaders.count("authorization") == 0)
{