From 64621d90e97cbb2300689559142f009f1af83f9e Mon Sep 17 00:00:00 2001 From: Donghyun Kim Date: Tue, 2 Aug 2022 14:20:01 +0900 Subject: [PATCH 1/6] Add: VSL for frameworkinfo plugin --- volatility3/framework/plugins/frameworkinfo.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/volatility3/framework/plugins/frameworkinfo.py b/volatility3/framework/plugins/frameworkinfo.py index b7c887d5c..63ba24d09 100644 --- a/volatility3/framework/plugins/frameworkinfo.py +++ b/volatility3/framework/plugins/frameworkinfo.py @@ -1,3 +1,7 @@ +# This file is Copyright 2022 Volatility Foundation and licensed under the Volatility Software License 1.0 +# which is available at https://www.volatilityfoundation.org/license/vsl-v1.0 +# + from typing import List from volatility3 import framework From 9bfa80e59cb1907163b5adfc054a6a192332630f Mon Sep 17 00:00:00 2001 From: Donghyun Kim Date: Tue, 2 Aug 2022 14:26:21 +0900 Subject: [PATCH 2/6] Add: VSL for initialize file --- volatility3/framework/layers/codecs/__init__.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/volatility3/framework/layers/codecs/__init__.py b/volatility3/framework/layers/codecs/__init__.py index 550161e6d..e019bcbcd 100644 --- a/volatility3/framework/layers/codecs/__init__.py +++ b/volatility3/framework/layers/codecs/__init__.py @@ -1,3 +1,7 @@ +# This file is Copyright 2022 Volatility Foundation and licensed under the Volatility Software License 1.0 +# which is available at https://www.volatilityfoundation.org/license/vsl-v1.0 +# + """Codecs used for encoding or decoding data should live here From 54f11d7e18b12c7a8fd384fa333406e5c3dded25 Mon Sep 17 00:00:00 2001 From: Donghyun Kim Date: Tue, 2 Aug 2022 14:26:47 +0900 Subject: [PATCH 3/6] Add: VSL for automagic/module --- volatility3/framework/automagic/module.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/volatility3/framework/automagic/module.py b/volatility3/framework/automagic/module.py index 3d2bb584a..6810a58e2 100644 --- a/volatility3/framework/automagic/module.py +++ b/volatility3/framework/automagic/module.py @@ -1,3 +1,7 @@ +# This file is Copyright 2022 Volatility Foundation and licensed under the Volatility Software License 1.0 +# which is available at https://www.volatilityfoundation.org/license/vsl-v1.0 +# + from volatility3.framework import interfaces, constants, configuration From a78bf32bd8df8fc075f52fed211e0bf4a9bb7840 Mon Sep 17 00:00:00 2001 From: Donghyun Kim Date: Tue, 2 Aug 2022 14:26:58 +0900 Subject: [PATCH 4/6] Add: VSL for layers/avml --- volatility3/framework/layers/avml.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/volatility3/framework/layers/avml.py b/volatility3/framework/layers/avml.py index acc4493f4..f31737232 100644 --- a/volatility3/framework/layers/avml.py +++ b/volatility3/framework/layers/avml.py @@ -1,3 +1,7 @@ +# This file is Copyright 2022 Volatility Foundation and licensed under the Volatility Software License 1.0 +# which is available at https://www.volatilityfoundation.org/license/vsl-v1.0 +# + """Functions that read AVML files. The user of the file doesn't have to worry about the compression, From 85a94efd67c41993b15d066343c545da05c2c898 Mon Sep 17 00:00:00 2001 From: Donghyun Kim Date: Tue, 2 Aug 2022 14:27:08 +0900 Subject: [PATCH 5/6] Add: VSL for layers/leechcore --- volatility3/framework/layers/leechcore.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/volatility3/framework/layers/leechcore.py b/volatility3/framework/layers/leechcore.py index 8c492ca85..fb0442cfe 100644 --- a/volatility3/framework/layers/leechcore.py +++ b/volatility3/framework/layers/leechcore.py @@ -1,3 +1,7 @@ +# This file is Copyright 2022 Volatility Foundation and licensed under the Volatility Software License 1.0 +# which is available at https://www.volatilityfoundation.org/license/vsl-v1.0 +# + import io import logging import urllib.parse From 5c76dc88e9bf4ec809f1e914a35ace5f14b446c2 Mon Sep 17 00:00:00 2001 From: Donghyun Kim Date: Tue, 2 Aug 2022 14:27:15 +0900 Subject: [PATCH 6/6] Add: VSL for layers/linear --- volatility3/framework/layers/linear.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/volatility3/framework/layers/linear.py b/volatility3/framework/layers/linear.py index c5cb47bdc..383f3d558 100644 --- a/volatility3/framework/layers/linear.py +++ b/volatility3/framework/layers/linear.py @@ -1,3 +1,7 @@ +# This file is Copyright 2022 Volatility Foundation and licensed under the Volatility Software License 1.0 +# which is available at https://www.volatilityfoundation.org/license/vsl-v1.0 +# + import functools from typing import List, Optional, Tuple, Iterable