From 649e06d850ee4b3a8a862a27e410adcdfa168d3d Mon Sep 17 00:00:00 2001 From: Masic Date: Wed, 16 Apr 2025 15:21:12 -0600 Subject: [PATCH] Update MetasploitMCP.py to import subprocess --- MetasploitMCP.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/MetasploitMCP.py b/MetasploitMCP.py index 9e5728d..75795f4 100644 --- a/MetasploitMCP.py +++ b/MetasploitMCP.py @@ -7,7 +7,6 @@ import shlex # Still needed for console command quoting import pathlib import subprocess # For executing local programs from datetime import datetime -# Removed subprocess import as msfvenom is no longer called directly from typing import List, Dict, Any, Optional, Tuple, Union # Third-party Libraries @@ -1782,4 +1781,4 @@ if __name__ == "__main__": port=selected_port, reload=args.reload, log_level="info" # Use Uvicorn's logging for server events - ) \ No newline at end of file + )