From 8fdaf09d4d1f3fbac7def995b99e9bc4f4f5020d Mon Sep 17 00:00:00 2001 From: Olivier Cervello Date: Thu, 11 Apr 2024 18:15:01 -0400 Subject: [PATCH] fix: do not create scripts/ folder (#273) --- secator/definitions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/secator/definitions.py b/secator/definitions.py index ed4053a2..e3ebffe5 100644 --- a/secator/definitions.py +++ b/secator/definitions.py @@ -155,7 +155,7 @@ # Create all folders -for folder in [BIN_FOLDER, DATA_FOLDER, REPORTS_FOLDER, WORDLISTS_FOLDER, SCRIPTS_FOLDER, CVES_FOLDER, PAYLOADS_FOLDER, +for folder in [BIN_FOLDER, DATA_FOLDER, REPORTS_FOLDER, WORDLISTS_FOLDER, CVES_FOLDER, PAYLOADS_FOLDER, REVSHELLS_FOLDER, CELERY_DATA_FOLDER, CELERY_RESULTS_FOLDER]: if not os.path.exists(folder): console.print(f'[bold turquoise4]Creating folder {folder} ...[/] ', end='')