Provide an AdvancedExploiter instance for exploit technique tests. Used by test_exploit_techniques.py
(api_server_required)
| 293 | |
| 294 | @pytest.fixture |
| 295 | def exploiter(api_server_required): |
| 296 | """ |
| 297 | Provide an AdvancedExploiter instance for exploit technique tests. |
| 298 | |
| 299 | Used by test_exploit_techniques.py |
| 300 | """ |
| 301 | from security.test_exploit_techniques import AdvancedExploiter |
| 302 | |
| 303 | return AdvancedExploiter() |
| 304 | |
| 305 | |
| 306 | @pytest.fixture |
nothing calls this directly
no test coverage detected