From e27883f0078cf7655f50754b955c9ebfdeecb046 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=C3=A1=C5=A1=20Novotn=C3=BD?= Date: Fri, 22 Sep 2023 10:22:50 +0200 Subject: [PATCH] Remove old quarantine file --- maldump/avs/quarantine.py | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100755 maldump/avs/quarantine.py diff --git a/maldump/avs/quarantine.py b/maldump/avs/quarantine.py deleted file mode 100755 index bcace2c..0000000 --- a/maldump/avs/quarantine.py +++ /dev/null @@ -1,30 +0,0 @@ -from pathlib import Path - - -class QuarEntry(): - def __init__(self): - self.timestamp = '' # datetime - self.threat = '' # string - self.path = '' # string - self.size = '' # integer - self.md5 = '' # string - self.malfile = '' # bytes-like - - -class Quarantine(object): - """Generic class describing the overall quarantine interface""" - - def __init__(self): - # Name of the AV - self.name = '' - - # Absolute location of the quarantine folder - self.location = Path() - - """Interface for the export function - - Returns: - A list of 'QuarEntry' objects - """ - def export(self): - pass