From 154999461fbecf374661f14c0ae5d3ec067e855e Mon Sep 17 00:00:00 2001 From: Dave Lassalle Date: Wed, 12 Mar 2025 19:02:59 -0500 Subject: [PATCH] #1471 - use standard date format --- volatility3/framework/plugins/windows/amcache.py | 2 +- volatility3/framework/plugins/windows/cachedump.py | 2 +- volatility3/framework/plugins/windows/hashdump.py | 2 +- volatility3/framework/plugins/windows/lsadump.py | 2 +- volatility3/framework/plugins/windows/scheduled_tasks.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/volatility3/framework/plugins/windows/amcache.py b/volatility3/framework/plugins/windows/amcache.py index 90e0949c8..6e45d5b36 100644 --- a/volatility3/framework/plugins/windows/amcache.py +++ b/volatility3/framework/plugins/windows/amcache.py @@ -18,7 +18,7 @@ class Amcache(amcache.Amcache): warnings.warn( FutureWarning( "The windows.amcache.Amcache plugin is deprecated and will be removed on " - "September 19, 2025. Use windows.registry.amcache.Amcache instead." + "2025-09-25. Use windows.registry.amcache.Amcache instead." ) ) return super().__getattribute__(*args, **kwargs) diff --git a/volatility3/framework/plugins/windows/cachedump.py b/volatility3/framework/plugins/windows/cachedump.py index 8640ae5cf..14320312a 100644 --- a/volatility3/framework/plugins/windows/cachedump.py +++ b/volatility3/framework/plugins/windows/cachedump.py @@ -18,7 +18,7 @@ class Cachedump(cachedump.Cachedump): warnings.warn( FutureWarning( "The windows.cachedump.Cachedump plugin is deprecated and will be removed on " - "September 19, 2025. Use windows.registry.cachedump.Cachedump instead." + "2025-09-25. Use windows.registry.cachedump.Cachedump instead." ) ) return super().__getattribute__(*args, **kwargs) diff --git a/volatility3/framework/plugins/windows/hashdump.py b/volatility3/framework/plugins/windows/hashdump.py index ee6bdb477..98baf7d53 100644 --- a/volatility3/framework/plugins/windows/hashdump.py +++ b/volatility3/framework/plugins/windows/hashdump.py @@ -18,7 +18,7 @@ class Hashdump(hashdump.Hashdump): warnings.warn( FutureWarning( "The windows.hashdump.Hashdump plugin is deprecated and will be removed on " - "September 19, 2025. Use windows.registry.hashdump.Hashdump instead." + "2025-09-25. Use windows.registry.hashdump.Hashdump instead." ) ) return super().__getattribute__(*args, **kwargs) diff --git a/volatility3/framework/plugins/windows/lsadump.py b/volatility3/framework/plugins/windows/lsadump.py index 8ee173e89..86cbe1949 100644 --- a/volatility3/framework/plugins/windows/lsadump.py +++ b/volatility3/framework/plugins/windows/lsadump.py @@ -18,7 +18,7 @@ class Lsadump(lsadump.Lsadump): warnings.warn( FutureWarning( "The windows.lsadump.Lsadump plugin is deprecated and will be removed on " - "September 19, 2025. Use windows.registry.lsadump.Lsadump instead." + "2025-09-25. Use windows.registry.lsadump.Lsadump instead." ) ) return super().__getattribute__(*args, **kwargs) diff --git a/volatility3/framework/plugins/windows/scheduled_tasks.py b/volatility3/framework/plugins/windows/scheduled_tasks.py index 15d8abb93..7241f07d1 100644 --- a/volatility3/framework/plugins/windows/scheduled_tasks.py +++ b/volatility3/framework/plugins/windows/scheduled_tasks.py @@ -19,7 +19,7 @@ class ScheduledTasks(scheduled_tasks.ScheduledTasks): warnings.warn( FutureWarning( "The windows.registry.scheduled_tasks.ScheduledTasks plugin is deprecated and will be removed on " - "September 19, 2025. Use windows.registry.scheduled_tasks.ScheduledTasks instead." + "2025-09-25. Use windows.registry.scheduled_tasks.ScheduledTasks instead." ) ) return super().__getattribute__(*args, **kwargs)