From ef10237cfe737fad162c89292ec55e38479dafdd Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Tue, 9 Nov 2021 15:58:17 -0500 Subject: [PATCH] Update smm rules to relax --- misc/fixsmmexpiry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/fixsmmexpiry.py b/misc/fixsmmexpiry.py index 8c6884a4..fdcb4351 100644 --- a/misc/fixsmmexpiry.py +++ b/misc/fixsmmexpiry.py @@ -44,7 +44,7 @@ if 'authResult>0' in rspdata: tokens = fromstring(rspdata) st2 = tokens.findall('st2')[0].text w.set_header('ST2', st2) - rules = 'set=passwordDurationDays:0,passwordExpireWarningDays:0,passwordChangeInterval:0,passwordChangeInterval:0' + rules = 'set=passwordDurationDays:0,passwordExpireWarningDays:0,passwordChangeInterval:0,passwordReuseCheckNum:0,passwordFailAllowdNum:0,passwordLockoutTimePeriod:0' w.request('POST', '/data', rules) rsp = w.getresponse() print(repr(rsp.read()))