Check if running in server mode
(self)
| 256 | def _check_tool_availability(self): |
| 257 | """Check which security tools are available""" |
| 258 | all_tools = {**self.TRAFFIC_ANALYSIS_TOOLS, **self.VULN_ASSESSMENT_TOOLS} |
| 259 | |
| 260 | for tool_name in all_tools: |
| 261 | self.capabilities.available_tools[tool_name] = shutil.which(tool_name) is not None |
| 262 | |
| 263 | def _determine_feature_flags(self): |
no outgoing calls
no test coverage detected