- WAF功能
- 节点自动注册到后台
- 其它接口
- 接口更新日志
- AI接口
- 定制页面上传
- API完成情况
- UEBA参数文档
- 防火墙配置
- 节点、域名、缓存
- 接口认证
- 节点管理
- 缓存配置
- 防火墙配置
- IP黑/白名单
- URL黑/白名单
- 防CC
- 防盗链
- 精准访问控制【2024.06更新】
- 区域访问限制
- APP专用防CC策略
- 内容安全风控:关键字【2024.06更新】
- 内容安全风控:图片
- 安全访问控制
- WAF功能
- 新WAF功能
- 防篡改
- 批量配置接口
- http防护【2024.05更新】
- 动态防护【2024.06更新】
- 资源访问控制【2024.06更新】
- bot防护【2024.06更新】
- api防护【2024.06更新】
- url统计模块【2024.06更新】
- api基线管理
- httpStream
- 蜜罐功能(新增)
- 证书管理
- 统计数据
- 其它
- 健康检查
- AI接口
- 接口认证
- 测试包
- UEBA【2024.06更新】
- UEBA2.0(2025.06新增)
- 【内部用】ip库管理【2024.06更新】
http防护配置修改
开发中
PUT
/firewall/httpProtection
contentType --->CType
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Header 参数
Accept
string
必需
默认值:
application/json
Body 参数application/json
domainUUIDList
array[string]
必需
methodType
array[string]
请求类型
CType
array[string]
content-type
active
boolean
总开关
fileType
array[string]
文件类型
httpActive
boolean
http防护开关
httpQuery
object
必需
queryLength
integer
请求体长度
queryValueLength
integer
请求体值长度
queryValueNum
integer
请求体值数量
cookiesLength
integer
cookie长度
fileLength
integer
文件大小
headerLength
integer
header头长度
urlLength
integer
url长度
示例
{
"domainUUIDList": [
"string"
],
"methodType": [
"string"
],
"CType": [
"string"
],
"active": true,
"fileType": [
"string"
],
"httpActive": true,
"httpQuery": {
"queryLength": 0,
"queryValueLength": 0,
"queryValueNum": 0,
"cookiesLength": 0,
"fileLength": 0,
"headerLength": 0,
"urlLength": 0
}
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request PUT '/firewall/httpProtection' \
--header 'Accept;' \
--header 'Content-Type: application/json' \
--data-raw '{
"domainUUIDList": [
"string"
],
"methodType": [
"string"
],
"CType": [
"string"
],
"active": true,
"fileType": [
"string"
],
"httpActive": true,
"httpQuery": {
"queryLength": 0,
"queryValueLength": 0,
"queryValueNum": 0,
"cookiesLength": 0,
"fileLength": 0,
"headerLength": 0,
"urlLength": 0
}
}'
返回响应
🟢200成功
application/json
Body
object {0}
示例
{}
修改于 2024-05-21 07:31:24