mirror of
https://github.com/openappsec/openappsec.git
synced 2025-06-28 16:41:02 +03:00
73 lines
1.7 KiB
C++
Executable File
73 lines
1.7 KiB
C++
Executable File
// Copyright (C) 2022 Check Point Software Technologies Ltd. All rights reserved.
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#ifndef __WAAP_ENUMS_H__
|
|
#define __WAAP_ENUMS_H__
|
|
|
|
#include <cstddef>
|
|
#include <functional>
|
|
|
|
#define NO_THREAT_FINAL_SCORE 0.0
|
|
#define INFO_THREAT_THRESHOLD 1.0
|
|
#define LOW_THREAT_THRESHOLD 3.0
|
|
#define MED_THREAT_THRESHOLD 6.0
|
|
#define MAX_FINAL_SCORE 10.0
|
|
#define ATTACK_IN_PARAM "attack_in_param"
|
|
|
|
enum ThreatLevel {
|
|
NO_THREAT = 0,
|
|
THREAT_INFO,
|
|
LOW_THREAT,
|
|
MEDIUM_THREAT,
|
|
HIGH_THREAT
|
|
};
|
|
|
|
enum BlockType {
|
|
NOT_BLOCKING,
|
|
FORCE_EXCEPTION,
|
|
FORCE_BLOCK,
|
|
API_BLOCK,
|
|
BOT_BLOCK,
|
|
WAF_BLOCK,
|
|
CSRF_BLOCK,
|
|
LIMIT_BLOCK
|
|
};
|
|
|
|
enum ParamType {
|
|
UNKNOWN_PARAM_TYPE,
|
|
HTML_PARAM_TYPE,
|
|
URL_PARAM_TYPE,
|
|
FREE_TEXT_PARAM_TYPE,
|
|
FREE_TEXT_FRENCH_PARAM_TYPE,
|
|
PIPE_PARAM_TYPE,
|
|
LONG_RANDOM_TEXT_PARAM_TYPE,
|
|
BASE64_PARAM_TYPE,
|
|
ADMINISTRATOR_CONFIG_PARAM_TYPE,
|
|
FILE_PATH_PARAM_TYPE,
|
|
SEMICOLON_DELIMITED_PARAM_TYPE,
|
|
ASTERISK_DELIMITED_PARAM_TYPE,
|
|
COMMA_DELIMITED_PARAM_TYPE,
|
|
AMPERSAND_DELIMITED_PARAM_TYPE,
|
|
BINARY_PARAM_TYPE,
|
|
PARAM_TYPE_COUNT
|
|
};
|
|
|
|
namespace std {
|
|
template<>
|
|
struct hash<ParamType>
|
|
{
|
|
std::size_t operator()(const ParamType& type) const noexcept { return (size_t)type; }
|
|
};
|
|
}
|
|
#endif
|