Debugging

This commit is contained in:
Enrique Martin 2024-04-08 13:59:46 +02:00
parent 3dc7432861
commit bd23db3fda
1 changed files with 1 additions and 1 deletions

View File

@ -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)