Debugging
This commit is contained in:
parent
3dc7432861
commit
bd23db3fda
|
@ -340,7 +340,7 @@ def check_login_audit_policy(auditpol_logon_category, auditpol_logon_success_con
|
|||
try:
|
||||
# Run the auditpol command to check the audit policy for Logon/Logoff
|
||||
cmd_command = f'auditpol /get /subcategory:"{auditpol_logon_category}"'
|
||||
result = subprocess.run(cmd_command, shell=True, capture_output=True, text=True, check=True)
|
||||
result = subprocess.run(cmd_command, shell=True, capture_output=True, text=True, check=True, encoding=sys.getdefaultencoding())
|
||||
last_line = result.stdout.strip().split('\n')[-1].strip()
|
||||
last_line_parts = re.split(r'\s\s+', last_line)
|
||||
cleaned_line = re.sub(' +', ' ', last_line)
|
||||
|
|
Loading…
Reference in New Issue