├── .gitignore ├── LICENSE ├── Makefile ├── MetasploitMCP.py ├── README.md ├── conftest.py ├── pytest.ini ├── requirements-test.txt ├── requirements.txt ├── run_tests.py └── tests ├── __init__.py ├── test_helpers.py ├── test_options_parsing.py └── test_tools_integration.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GH05TCREW/MetasploitMCP/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GH05TCREW/MetasploitMCP/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GH05TCREW/MetasploitMCP/HEAD/Makefile -------------------------------------------------------------------------------- /MetasploitMCP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GH05TCREW/MetasploitMCP/HEAD/MetasploitMCP.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GH05TCREW/MetasploitMCP/HEAD/README.md -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GH05TCREW/MetasploitMCP/HEAD/conftest.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GH05TCREW/MetasploitMCP/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GH05TCREW/MetasploitMCP/HEAD/requirements-test.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GH05TCREW/MetasploitMCP/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GH05TCREW/MetasploitMCP/HEAD/run_tests.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Test package for MetasploitMCP 2 | -------------------------------------------------------------------------------- /tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GH05TCREW/MetasploitMCP/HEAD/tests/test_helpers.py -------------------------------------------------------------------------------- /tests/test_options_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GH05TCREW/MetasploitMCP/HEAD/tests/test_options_parsing.py -------------------------------------------------------------------------------- /tests/test_tools_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GH05TCREW/MetasploitMCP/HEAD/tests/test_tools_integration.py --------------------------------------------------------------------------------