/* * ModSecurity, http://www.modsecurity.org/ * Copyright (c) 2015 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 #include #include #include #include "modsecurity/modsecurity.h" #ifndef SRC_UTILS_H_ namespace ModSecurity { std::vector split(std::string str, char delimiter); double random_number(const double from, const double to); double generate_assay_unique_id(); std::string ascTime(time_t *t); void createDir(std::string dir, int mode); std::string dash_if_empty(const std::string& str); void chomp(std::string *str); std::string uri_decode(const std::string & sSrc); std::string tolower(std::string str); std::string toupper(std::string str); double cpu_seconds(void); int js_decode_nonstrict_inplace(unsigned char *input, int64_t input_len); static unsigned char x2c(unsigned char *what); int css_decode_inplace(unsigned char *input, int64_t input_len); static unsigned char xsingle2c(unsigned char *what); int html_entities_decode_inplace(unsigned char *input, int input_len); int normalize_path_inplace(unsigned char *input, int input_len, int win, int *changed); std::string string_to_hex(const std::string& input); int urldecode_uni_nonstrict_inplace_ex(Assay *assay, unsigned char *input, int64_t input_len, int *changed); std::string phase_name(int x); std::string limitTo(int amount, const std::string &str); std::string toHexIfNeeded(const std::string &str); } // namespace ModSecurity #define SRC_UTILS_H_ #endif // SRC_UTILS_H_