/
niceSOFT
/
libmodsecurity
Обзор
Документация
Войти
/
niceSOFT
/
libmodsecurity
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
v3/master
src/anchored_set_variable.cc
167 строк
4 KB
Ervin Hegedus
Apply suggestions from code review
11 мар 2026, 00:49
Не верифицирован
11 мар 2026, 00:49
1e75649
Код
Авторство
О чём код?
/* * ModSecurity, http://www.modsecurity.org/ * Copyright (c) 2015 - 2021 Trustwave Holdings, Inc. (http://www.trustwave.com/) * * You may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * If any of the files related to licensing are missing or if you have any * other questions related to licensing please contact Trustwave Holdings, Inc. * directly using the email address security@modsecurity.org. * */ #include <ctime> #include <iostream> #include <fstream> #include <string> #include <vector> #include "modsecurity/anchored_set_variable.h" #include "modsecurity/modsecurity.h" #include "modsecurity/transaction.h" #include "src/utils/regex.h" #include "src/variables/variable.h" namespace modsecurity { AnchoredSetVariable::AnchoredSetVariable(Transaction *t, const std::string &name) : m_transaction(t), m_name(name) { reserve(10); } AnchoredSetVariable::~AnchoredSetVariable() { unset(); } void AnchoredSetVariable::unset() { for (const auto& x : *this) { VariableValue *var = x.second; delete var; } clear(); } void AnchoredSetVariable::set(const std::string &key, const std::string &value, size_t offset, size_t len) { VariableValue *var = new VariableValue(&m_name, &key, &value); var->addOrigin(len, offset); emplace(key, var); } void AnchoredSetVariable::set(const std::string &key, const std::string &value, size_t offset) { VariableValue *var = new VariableValue(&m_name, &key, &value); var->addOrigin(value.size(), offset); emplace(key, var); } void AnchoredSetVariable::resolve( std::vector<const VariableValue *> *l) const { for (const auto& x : *this) { l->insert(l->begin(), new VariableValue(x.second)); } } void AnchoredSetVariable::resolve( std::vector<const VariableValue *> *l) { static_cast<const AnchoredSetVariable&>(*this).resolve(l); } void AnchoredSetVariable::resolve( std::vector<const VariableValue *> *l, const variables::KeyExclusions &ke) const { for (const auto& x : *this) { if (!ke.toOmit(x.first)) { l->insert(l->begin(), new VariableValue(x.second)); } else { ms_dbg_a(m_transaction, 7, "Excluding key: " + x.first + " from target value."); } } } void AnchoredSetVariable::resolve( std::vector<const VariableValue *> *l, variables::KeyExclusions &ke) { // cppcheck-suppress constParameterReference static_cast<const AnchoredSetVariable&>(*this).resolve(l, ke); } void AnchoredSetVariable::resolve(const std::string &key, std::vector<const VariableValue *> *l) { auto range = this->equal_range(key); for (auto it = range.first; it != range.second; ++it) { l->push_back(new VariableValue(it->second)); } } std::unique_ptr<std::string> AnchoredSetVariable::resolveFirst( const std::string &key) { if (auto search = this->find(key); search != this->end()) { return std::make_unique<std::string>(search->second->getValue()); } return nullptr; } void AnchoredSetVariable::resolveRegularExpression(Utils::Regex *r, std::vector<const VariableValue *> *l) const { for (const auto& x : *this) { int ret = Utils::regex_search(x.first, *r); if (ret <= 0) { continue; } l->insert(l->begin(), new VariableValue(x.second)); } } void AnchoredSetVariable::resolveRegularExpression(Utils::Regex *r, std::vector<const VariableValue *> *l) { static_cast<const AnchoredSetVariable&>(*this).resolveRegularExpression(r, l); } void AnchoredSetVariable::resolveRegularExpression(Utils::Regex *r, std::vector<const VariableValue *> *l, const variables::KeyExclusions &ke) const { for (const auto& x : *this) { int ret = Utils::regex_search(x.first, *r); if (ret <= 0) { continue; } if (!ke.toOmit(x.first)) { l->insert(l->begin(), new VariableValue(x.second)); } else { ms_dbg_a(m_transaction, 7, "Excluding key: " + x.first + " from target value."); } } } void AnchoredSetVariable::resolveRegularExpression(Utils::Regex *r, std::vector<const VariableValue *> *l, variables::KeyExclusions &ke) { // cppcheck-suppress constParameterReference static_cast<const AnchoredSetVariable&>(*this).resolveRegularExpression(r, l, ke); } } // namespace modsecurity