From: Stefan Metzmacher Date: Fri, 9 Dec 2016 08:26:32 +0000 (+0100) Subject: CVE-2017-12150: s3:pylibsmb: make use of SMB_SIGNING_DEFAULT for 'samba.samba3.libsmb... X-Git-Tag: samba-4.4.16~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=26b87d01b015c83a4670db62839f5c84b6e66478;p=thirdparty%2Fsamba.git CVE-2017-12150: s3:pylibsmb: make use of SMB_SIGNING_DEFAULT for 'samba.samba3.libsmb_samba_internal' BUG: https://bugzilla.samba.org/show_bug.cgi?id=12997 Signed-off-by: Stefan Metzmacher --- diff --git a/source3/libsmb/pylibsmb.c b/source3/libsmb/pylibsmb.c index 0c5d7e94841..97aa39ebce9 100644 --- a/source3/libsmb/pylibsmb.c +++ b/source3/libsmb/pylibsmb.c @@ -447,7 +447,7 @@ static int py_cli_state_init(struct py_cli_state *self, PyObject *args, cli_credentials_get_username(cli_creds), cli_credentials_get_domain(cli_creds), cli_credentials_get_password(cli_creds), - 0, 0); + 0, SMB_SIGNING_DEFAULT); if (!py_tevent_req_wait_exc(self->ev, req)) { return -1; }