You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
_python3.10/site-packages/nessus_file_reader/host/host.py", line 119, in detected_os
if """ in operating_system:
TypeError: argument of type 'NoneType' is not iterable_
Solution: Verify if is NoneType before if condition:
if operating_system is not None:
if """ in operating_system:
operating_system = str(operating_system).strip('["').strip('"]')
else:
operating_system = str(operating_system).strip('["').strip('"]')
else:
operating_system = ''
The text was updated successfully, but these errors were encountered:
`nessus_file_reader` should be fixed now LimberDuck/nessus-file-reader#8 (comment)
When parsing Unix compliance scans, the `.nessus` file is different so the script breaks because no `complicance_id` is present.
Specified the file encoding, had issues probably because of win<->*nix usual encoding fight
Using Python 3.10.4 in Linux:
Solution: Verify if is NoneType before if condition:
The text was updated successfully, but these errors were encountered: