When running the win log requester, it marks every successful request as a warning because of the line:
if response.status_code != 200 or response.status_code != 204:
in beeswax/tools/win_events/win_log_requester.py:153
The fix for this would be to change it to be an and instead of an or.
When running the win log requester, it marks every successful request as a warning because of the line:
in
beeswax/tools/win_events/win_log_requester.py:153The fix for this would be to change it to be an
andinstead of anor.