From e241ac0ac07f70d38b8fe5585ea8283287aaf77d Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Thu, 22 Apr 2021 17:18:52 +0100 Subject: [PATCH] Windows: Fixes missing os import Fixes #495 --- volatility3/framework/plugins/windows/svcscan.py | 1 + 1 file changed, 1 insertion(+) diff --git a/volatility3/framework/plugins/windows/svcscan.py b/volatility3/framework/plugins/windows/svcscan.py index 078445bb1..24bc27109 100644 --- a/volatility3/framework/plugins/windows/svcscan.py +++ b/volatility3/framework/plugins/windows/svcscan.py @@ -3,6 +3,7 @@ # import logging +import os from typing import List from volatility3.framework import interfaces, renderers, constants, symbols, exceptions