From 43b666e1f53fd67746e809969c7e18d5238ce15f Mon Sep 17 00:00:00 2001 From: Ajin Abraham Date: Mon, 18 Nov 2024 13:06:18 -0800 Subject: [PATCH] Version bump --- mobsf/MobSF/init.py | 2 +- mobsf/StaticAnalyzer/views/common/async_task.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mobsf/MobSF/init.py b/mobsf/MobSF/init.py index 92b7101d8..52fd44c74 100644 --- a/mobsf/MobSF/init.py +++ b/mobsf/MobSF/init.py @@ -18,7 +18,7 @@ logger = logging.getLogger(__name__) -VERSION = '4.2.0' +VERSION = '4.2.1' BANNER = r""" __ __ _ ____ _____ _ _ ____ | \/ | ___ | |__/ ___|| ___|_ _| || | |___ \ diff --git a/mobsf/StaticAnalyzer/views/common/async_task.py b/mobsf/StaticAnalyzer/views/common/async_task.py index 49625da98..be5d77977 100644 --- a/mobsf/StaticAnalyzer/views/common/async_task.py +++ b/mobsf/StaticAnalyzer/views/common/async_task.py @@ -33,7 +33,7 @@ def async_analysis(checksum, app_name, func, *args): created_at__gte=timezone.now() - timedelta(minutes=60), ).exists() if recent_task_exists: - logger.info('Analysis already in progress') + logger.info('Analysis already completed or in progress') return HttpResponseRedirect('/tasks') # Clear old tasks queue_size = settings.QUEUE_MAX_SIZE diff --git a/pyproject.toml b/pyproject.toml index cc9c03a38..a923336f3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "mobsf" -version = "4.2.0" +version = "4.2.1" description = "Mobile Security Framework (MobSF) is an automated, all-in-one mobile application (Android/iOS/Windows) pen-testing, malware analysis and security assessment framework capable of performing static and dynamic analysis." keywords = ["mobsf", "mobile security framework", "mobile security", "security tool", "static analysis", "dynamic analysis", "malware analysis"] authors = ["Ajin Abraham "]