From cbdc94c96a8e566f248ab8937fd0dc96934aa097 Mon Sep 17 00:00:00 2001 From: Akshay Shekhawat Date: Tue, 27 Sep 2022 01:19:31 -0700 Subject: [PATCH] add different attack types --- common/src/enums.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/common/src/enums.ts b/common/src/enums.ts index 2c5d9828..a8b2a812 100644 --- a/common/src/enums.ts +++ b/common/src/enums.ts @@ -67,7 +67,10 @@ export const VULNERABILITY_ALERT_TYPES = [ export enum AttackType { HIGH_USAGE_SENSITIVE_ENDPOINT = "High Usage on Sensitive Endpoint", - ANOMOLOUS_USAGE = "Anomolous Usage", + HIGH_ERROR_RATE = "High Error Rate", + ANOMALOUS_CALL_ORDER = "Anomalous Call Order", + UNAUTHENTICATED_ACCESS = "Unauthenticated Access", + BOLA = "Broken Object Level Authorization", } export enum ConnectionType {