1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-15 16:59:09 +03:00

drs repl: Only print raw DRS replication traffic at level 9

This can be sensitive even with the passwords still encrypted.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=13017
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
This commit is contained in:
Andrew Bartlett
2017-09-06 16:40:05 +12:00
parent 51289a6f9b
commit dc48fa9822
3 changed files with 8 additions and 4 deletions

View File

@ -48,7 +48,7 @@ def drsuapi_connect(server, lp, creds):
"""
binding_options = "seal"
if lp.log_level() >= 5:
if lp.log_level() >= 9:
binding_options += ",print"
binding_string = "ncacn_ip_tcp:%s[%s]" % (server, binding_options)
try: