Fixed GPP filename typo and print

main
dev 2020-08-26 22:47:43 -04:00
parent 8785f5d3f4
commit bf5b4486fc
1 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ class CMEModule:
elif 'Services.xml' in path:
xml_section = xml.findall('./NTService/Properties')
elif 'Scheduledtasks.xml' in path:
elif 'ScheduledTasks.xml' in path:
xml_section = xml.findall('./Task/Properties')
elif 'DataSources.xml' in path:
@ -85,4 +85,4 @@ class CMEModule:
password = b64decode(cpassword)
IV = "\x00" * 16
decypted = AES.new(key, AES.MODE_CBC, IV.encode("utf8")).decrypt(password)
return decypted.decode()
return decypted.decode().rstrip()