From d3210158ef378dcae07e237d74bd9a85ae8ddc15 Mon Sep 17 00:00:00 2001 From: "Dr.Lt.Data" Date: Mon, 10 Jun 2024 15:31:27 +0900 Subject: [PATCH] update security alert message. --- glob/manager_core.py | 2 +- glob/security_check.py | 8 +++++++- pyproject.toml | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/glob/manager_core.py b/glob/manager_core.py index ac5b96b7..6c4dddb7 100644 --- a/glob/manager_core.py +++ b/glob/manager_core.py @@ -23,7 +23,7 @@ sys.path.append(glob_path) import cm_global from manager_util import * -version = [2, 37, 1] +version = [2, 37, 2] version_str = f"V{version[0]}.{version[1]}" + (f'.{version[2]}' if len(version) > 2 else '') comfyui_manager_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..')) diff --git a/glob/security_check.py b/glob/security_check.py index 51323691..aac63ae1 100644 --- a/glob/security_check.py +++ b/glob/security_check.py @@ -9,10 +9,16 @@ def security_check(): custom_nodes_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..')) guide = {"ComfyUI_LLMVISION": """ +0.Remove ComfyUI\\custom_nodes\\ComfyUI_LLMVISION. 1.Remove pip packages: openai-1.16.3.dist-info, anthropic-0.21.4.dist-info, openai-1.30.2.dist-info, anthropic-0.26.1.dist-info, %LocalAppData%\\rundll64.exe + (For portable versions, it is recommended to reinstall. If you are using a venv, it is advised to recreate the venv.) 2.Remove these files in your system: lib/browser/admin.py, Cadmino.py, Fadmino.py, VISION-D.exe 3.Check your Windows registry for the key listed above and remove it. -4.Change all of your passwords, everywhere. + (HKEY_CURRENT_USER\Software\OpenAICLI) +4.Run a malware scanner. +5.Change all of your passwords, everywhere. +\n +Detailed information: https://old.reddit.com/r/comfyui/comments/1dbls5n/psa_if_youve_used_the_comfyui_llmvision_node_from/ """} node_blacklist = {"ComfyUI_LLMVISION": "ComfyUI_LLMVISION"} diff --git a/pyproject.toml b/pyproject.toml index 6a452cea..555f1cf1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "comfyui-manager" description = "ComfyUI-Manager provides features to install and manage custom nodes for ComfyUI, as well as various functionalities to assist with ComfyUI." -version = "2.37.1" +version = "2.37.2" license = "LICENSE" dependencies = ["GitPython", "PyGithub", "matrix-client==0.4.0", "transformers", "huggingface-hub>0.20", "typer", "rich", "typing-extensions"]