From a636c47c846b158919fabdbaea17ab3471adfda6 Mon Sep 17 00:00:00 2001 From: am0o0 <77095239+am0o0@users.noreply.github.com> Date: Sun, 25 Feb 2024 23:57:58 +0400 Subject: [PATCH] minor test cases change: remove unused dict --- .../CWE-074-SecondaryServerCmdInjection/Scrapli.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/python/ql/test/experimental/query-tests/Security/CWE-074-SecondaryServerCmdInjection/Scrapli.py b/python/ql/test/experimental/query-tests/Security/CWE-074-SecondaryServerCmdInjection/Scrapli.py index 002e5b1d2d3..3ac5afdca81 100644 --- a/python/ql/test/experimental/query-tests/Security/CWE-074-SecondaryServerCmdInjection/Scrapli.py +++ b/python/ql/test/experimental/query-tests/Security/CWE-074-SecondaryServerCmdInjection/Scrapli.py @@ -8,14 +8,6 @@ from scrapli.driver import GenericDriver app = FastAPI() -cisco_881 = { - 'device_type': 'cisco_ios', - 'host': '10.10.10.10', - 'username': 'test', - 'password': 'password', - 'port': 8022, # optional, defaults to 22 - 'secret': 'secret', # optional, defaults to '' -} @app.get("/bad1") async def bad1(cmd: str):