Blame SOURCES/CVE-2017-7494.patch
|
|
991b33 |
From d2bc9f3afe23ee04d237ae9f4511fbe59a27ff54 Mon Sep 17 00:00:00 2001
|
|
|
991b33 |
From: Volker Lendecke <vl@samba.org>
|
|
|
991b33 |
Date: Mon, 8 May 2017 21:40:40 +0200
|
|
|
991b33 |
Subject: [PATCH] CVE-2017-7494: rpc_server3: Refuse to open pipe names with /
|
|
|
991b33 |
inside
|
|
|
991b33 |
|
|
|
991b33 |
Bug: https://bugzilla.samba.org/show_bug.cgi?id=12780
|
|
|
991b33 |
|
|
|
991b33 |
Signed-off-by: Volker Lendecke <vl@samba.org>
|
|
|
991b33 |
Reviewed-by: Jeremy Allison <jra@samba.org>
|
|
|
991b33 |
Reviewed-by: Stefan Metzmacher <metze@samba.org>
|
|
|
991b33 |
---
|
|
|
991b33 |
source3/rpc_server/srv_pipe.c | 5 +++++
|
|
|
991b33 |
1 file changed, 5 insertions(+)
|
|
|
991b33 |
|
|
|
991b33 |
diff --git a/source3/rpc_server/srv_pipe.c b/source3/rpc_server/srv_pipe.c
|
|
|
991b33 |
index 0633b5f..c3f0cd8 100644
|
|
|
991b33 |
--- a/source3/rpc_server/srv_pipe.c
|
|
|
991b33 |
+++ b/source3/rpc_server/srv_pipe.c
|
|
|
991b33 |
@@ -475,6 +475,11 @@ bool is_known_pipename(const char *pipename, struct ndr_syntax_id *syntax)
|
|
|
991b33 |
{
|
|
|
991b33 |
NTSTATUS status;
|
|
|
991b33 |
|
|
|
991b33 |
+ if (strchr(pipename, '/')) {
|
|
|
991b33 |
+ DEBUG(1, ("Refusing open on pipe %s\n", pipename));
|
|
|
991b33 |
+ return false;
|
|
|
991b33 |
+ }
|
|
|
991b33 |
+
|
|
|
991b33 |
if (lp_disable_spoolss() && strequal(pipename, "spoolss")) {
|
|
|
991b33 |
DEBUG(10, ("refusing spoolss access\n"));
|
|
|
991b33 |
return false;
|
|
|
991b33 |
--
|
|
|
991b33 |
1.9.1
|
|
|
991b33 |
|