Improve detection of enabled AV products
This commit is contained in:
parent
06018125b2
commit
4985df805d
1 changed files with 1 additions and 1 deletions
|
|
@ -95,7 +95,7 @@ def get_installed_antivirus():
|
|||
out = out.stdout.decode().strip()
|
||||
state = out.split('=')[1]
|
||||
state = hex(int(state))
|
||||
if str(state)[3:5] != '10':
|
||||
if str(state)[3:5] not in ['10', '11']:
|
||||
programs.append('[Disabled] {}'.format(prod))
|
||||
else:
|
||||
programs.append(prod)
|
||||
|
|
|
|||
Loading…
Reference in a new issue