mirror of
https://github.com/openappsec/openappsec.git
synced 2025-06-28 16:41:02 +03:00
80 lines
2.3 KiB
C++
80 lines
2.3 KiB
C++
// 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.
|
|
|
|
#include "generic_rulebase/rulebase_config.h"
|
|
|
|
#include "telemetry.h"
|
|
#include "config.h"
|
|
|
|
USE_DEBUG_FLAG(D_RULEBASE_CONFIG);
|
|
|
|
using namespace std;
|
|
|
|
set<string> BasicRuleConfig::assets_ids{};
|
|
set<string> BasicRuleConfig::assets_ids_aggregation{};
|
|
|
|
void
|
|
BasicRuleConfig::load(cereal::JSONInputArchive &ar)
|
|
{
|
|
parseJSONKey<vector<RulePractice>>("practices", practices, ar);
|
|
parseJSONKey<vector<RuleTrigger>>("triggers", triggers, ar);
|
|
parseJSONKey<vector<RuleParameter>>("parameters", parameters, ar);
|
|
parseJSONKey<uint8_t>("priority", priority, ar);
|
|
parseJSONKey<string>("ruleId", rule_id, ar);
|
|
parseJSONKey<string>("ruleName", rule_name, ar);
|
|
parseJSONKey<string>("assetId", asset_id, ar);
|
|
parseJSONKey<string>("assetName", asset_name, ar);
|
|
parseJSONKey<string>("zoneId", zone_id, ar);
|
|
parseJSONKey<string>("zoneName", zone_name, ar);
|
|
|
|
assets_ids_aggregation.insert(asset_id);
|
|
}
|
|
|
|
void
|
|
BasicRuleConfig::updateCountMetric()
|
|
{
|
|
BasicRuleConfig::assets_ids = BasicRuleConfig::assets_ids_aggregation;
|
|
AssetCountEvent(AssetType::ALL, BasicRuleConfig::assets_ids.size()).notify();
|
|
}
|
|
|
|
bool
|
|
BasicRuleConfig::isPracticeActive(const string &practice_id) const
|
|
{
|
|
for (auto practice: practices) {
|
|
if (practice.getId() == practice_id) return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool
|
|
BasicRuleConfig::isTriggerActive(const string &trigger_id) const
|
|
{
|
|
for (auto trigger: triggers) {
|
|
if (trigger.getId() == trigger_id) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool
|
|
BasicRuleConfig::isParameterActive(const string ¶meter_id) const
|
|
{
|
|
for (auto param: parameters) {
|
|
if (param.getId() == parameter_id) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|