From 6bbd337284727c0015ce682066c2e7fcba07404e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Zaj=C4=85c?= Date: Thu, 19 Sep 2024 08:26:16 +0200 Subject: [PATCH 1/3] Faster sqlmap --- extra_modules_config.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/extra_modules_config.py b/extra_modules_config.py index 54ef9cd..02c07b0 100644 --- a/extra_modules_config.py +++ b/extra_modules_config.py @@ -46,11 +46,7 @@ class ExtraModulesConfig: "SQLMAP_TAMPER_SCRIPTS", cast=decouple.Csv(str), default=",".join( - [ - "chardoubleencode", - "charencode", - "/opt/karton_sqlmap/tamper/tamper_double_quotes.py", - ] + [] ), ) From bd9564fd89d15b114abbeb0fcf5ebf423b0c94a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Zaj=C4=85c?= Date: Thu, 19 Sep 2024 08:27:46 +0200 Subject: [PATCH 2/3] lint --- extra_modules_config.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/extra_modules_config.py b/extra_modules_config.py index 02c07b0..ed582cc 100644 --- a/extra_modules_config.py +++ b/extra_modules_config.py @@ -45,9 +45,7 @@ class ExtraModulesConfig: SQLMAP_TAMPER_SCRIPTS = decouple.config( "SQLMAP_TAMPER_SCRIPTS", cast=decouple.Csv(str), - default=",".join( - [] - ), + default=",".join([]), ) # Timeout counted in seconds, after which the what-vpn module terminates a connection and starts using the next sniffer. From 87ad440cce151fe07c2cf558ad7de54663defde1 Mon Sep 17 00:00:00 2001 From: kazet Date: Thu, 19 Sep 2024 08:29:17 +0200 Subject: [PATCH 3/3] Update extra_modules_config.py Co-authored-by: Bulek --- extra_modules_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extra_modules_config.py b/extra_modules_config.py index ed582cc..4e14153 100644 --- a/extra_modules_config.py +++ b/extra_modules_config.py @@ -45,7 +45,7 @@ class ExtraModulesConfig: SQLMAP_TAMPER_SCRIPTS = decouple.config( "SQLMAP_TAMPER_SCRIPTS", cast=decouple.Csv(str), - default=",".join([]), + default="", ) # Timeout counted in seconds, after which the what-vpn module terminates a connection and starts using the next sniffer.