From 6863da27d50771bece42a99565eae75ac654c6e5 Mon Sep 17 00:00:00 2001 From: denis-maiorov-brightsec <103932492+denis-maiorov-brightsec@users.noreply.github.com> Date: Fri, 27 Oct 2023 18:32:14 +0400 Subject: [PATCH] feat(scan): add `google_cloud_storage` and `azure_blob_storage` tests (#494) closes #492 --- src/Scan/Scans.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Scan/Scans.ts b/src/Scan/Scans.ts index 756050dc..8daba20c 100644 --- a/src/Scan/Scans.ts +++ b/src/Scan/Scans.ts @@ -18,6 +18,7 @@ export enum AttackParamLocation { export enum TestType { ANGULAR_CSTI = 'angular_csti', + AZURE_BLOB_STORAGE = 'azure_blob_storage', BACKUP_LOCATIONS = 'backup_locations', BOLA = 'bola', BROKEN_SAML_AUTH = 'broken_saml_auth', @@ -35,6 +36,7 @@ export enum TestType { * @deprecated Use TestType.XSS instead */ DOM_XSS = 'dom_xss', + GOOGLE_CLOUD_STORAGE = 'google_cloud_storage', EMAIL_INJECTION = 'email_injection', EXCESSIVE_DATA_EXPOSURE = 'excessive_data_exposure', EXPOSED_COUCH_DB_APIS = 'exposed_couch_db_apis', @@ -79,10 +81,12 @@ export enum TestType { } export const EXPENSIVE_TESTS: readonly TestType[] = [ + TestType.AZURE_BLOB_STORAGE, TestType.BUSINESS_CONSTRAINT_BYPASS, TestType.BOLA, TestType.CVE, TestType.DATE_MANIPULATION, + TestType.GOOGLE_CLOUD_STORAGE, TestType.EXCESSIVE_DATA_EXPOSURE, TestType.ID_ENUMERATION, TestType.LRRL,