Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8977,6 +8977,7 @@ components:
enum:
- server.db.statement
- server.io.fs.file
- server.io.fs.file_write
- server.io.net.url
- server.sys.shell.cmd
- server.request.method
Expand All @@ -8990,6 +8991,7 @@ components:
- server.request.trailers
- server.request.body
- server.request.body.filenames
- server.request.body.files_content
- server.response.status
- server.response.headers.no_cookies
- server.response.trailers
Expand All @@ -9011,6 +9013,7 @@ components:
x-enum-varnames:
- SERVER_DB_STATEMENT
- SERVER_IO_FS_FILE
- SERVER_IO_FS_FILE_WRITE
- SERVER_IO_NET_URL
- SERVER_SYS_SHELL_CMD
- SERVER_REQUEST_METHOD
Expand All @@ -9024,6 +9027,7 @@ components:
- SERVER_REQUEST_TRAILERS
- SERVER_REQUEST_BODY
- SERVER_REQUEST_BODY_FILENAMES
- SERVER_REQUEST_BODY_FILES_CONTENT
- SERVER_RESPONSE_STATUS
- SERVER_RESPONSE_HEADERS_NO_COOKIES
- SERVER_RESPONSE_TRAILERS
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ public class ApplicationSecurityWafCustomRuleConditionInputAddress extends Model
Arrays.asList(
"server.db.statement",
"server.io.fs.file",
"server.io.fs.file_write",
"server.io.net.url",
"server.sys.shell.cmd",
"server.request.method",
Expand All @@ -43,6 +44,7 @@ public class ApplicationSecurityWafCustomRuleConditionInputAddress extends Model
"server.request.trailers",
"server.request.body",
"server.request.body.filenames",
"server.request.body.files_content",
"server.response.status",
"server.response.headers.no_cookies",
"server.response.trailers",
Expand All @@ -64,6 +66,9 @@ public class ApplicationSecurityWafCustomRuleConditionInputAddress extends Model
new ApplicationSecurityWafCustomRuleConditionInputAddress("server.db.statement");
public static final ApplicationSecurityWafCustomRuleConditionInputAddress SERVER_IO_FS_FILE =
new ApplicationSecurityWafCustomRuleConditionInputAddress("server.io.fs.file");
public static final ApplicationSecurityWafCustomRuleConditionInputAddress
SERVER_IO_FS_FILE_WRITE =
new ApplicationSecurityWafCustomRuleConditionInputAddress("server.io.fs.file_write");
public static final ApplicationSecurityWafCustomRuleConditionInputAddress SERVER_IO_NET_URL =
new ApplicationSecurityWafCustomRuleConditionInputAddress("server.io.net.url");
public static final ApplicationSecurityWafCustomRuleConditionInputAddress SERVER_SYS_SHELL_CMD =
Expand Down Expand Up @@ -97,6 +102,10 @@ public class ApplicationSecurityWafCustomRuleConditionInputAddress extends Model
SERVER_REQUEST_BODY_FILENAMES =
new ApplicationSecurityWafCustomRuleConditionInputAddress(
"server.request.body.filenames");
public static final ApplicationSecurityWafCustomRuleConditionInputAddress
SERVER_REQUEST_BODY_FILES_CONTENT =
new ApplicationSecurityWafCustomRuleConditionInputAddress(
"server.request.body.files_content");
public static final ApplicationSecurityWafCustomRuleConditionInputAddress SERVER_RESPONSE_STATUS =
new ApplicationSecurityWafCustomRuleConditionInputAddress("server.response.status");
public static final ApplicationSecurityWafCustomRuleConditionInputAddress
Expand Down
Loading