From d651c2914929e4ab91b8be7aad010a22656e1607 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Wed, 30 Mar 2022 08:50:08 -0400 Subject: [PATCH] Add password expiration recovery to smm discovery SMM discover can now also unexpire password during onboarding. --- .../confluent/discovery/handlers/smm.py | 23 ++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/confluent_server/confluent/discovery/handlers/smm.py b/confluent_server/confluent/discovery/handlers/smm.py index 96e2dbd3..6386812f 100644 --- a/confluent_server/confluent/discovery/handlers/smm.py +++ b/confluent_server/confluent/discovery/handlers/smm.py @@ -153,7 +153,28 @@ class NodeHandler(bmchandler.NodeHandler): rsp = wc.getresponse() rspdata = util.stringify(rsp.read()) if 'renew_account' in rspdata: - raise Exception('Configured password has expired') + tmppassword = 'Tmp42' + password[5:] + tokens = fromstring(rspdata) + st2 = tokens.findall('st2')[0].text + wc.set_header('ST2', st2) + wc.request('POST', '/data/changepwd', 'oripwd={0}&newpwd={1}'.format(password, tmppassword)) + rsp = wc.getresponse() + rspdata = rsp.read().decode('utf8') + bdata = 'user={0}&password={1}'.format(username, tmppassword) + wc.request('POST', '/data/login', bdata, headers) + rsp = wc.getresponse() + rspdata = rsp.read().decode('utf8') + tokens = fromstring(rspdata) + st2 = tokens.findall('st2')[0].text + wc.set_header('ST2', st2) + rules = 'set=passwordChangeInterval:0,passwordReuseCheckNum:0' + wc.request('POST', '/data', rules) + wc.getresponse().read() + wc.request('POST', '/data/changepwd', 'oripwd={0}&newpwd={1}'.format(tmppassword, password)) + wc.getresponse().read() + wc.request('POST', '/data/login', urlencode(authdata), headers) + rsp = wc.getresponse() + rspdata = util.stringify(rsp.read()) if 'authResult>0' not in rspdata: raise Exception('Unknown username/password on SMM') tokens = fromstring(rspdata)