CppCMS
|
The class that holds XSS filter rules. More...
#include <cppcms/xss.h>
Public Types | |
enum | html_type { xhtml_input, html_input } |
enum | tag_type { invalid_tag = 0, opening_and_closing = 1, stand_alone = 2, any_tag = 3 } |
typedef booster::function< bool(char const *begin, char const *end)> | validator_type |
Public Member Functions | |
rules (rules const &) | |
rules const & | operator= (rules const &) |
rules (json::value const &r) | |
rules (std::string const &file_name) | |
html_type | html () const |
void | html (html_type t) |
void | add_tag (std::string const &name, tag_type=any_tag) |
void | add_entity (std::string const &name) |
bool | numeric_entities_allowed () const |
void | numeric_entities_allowed (bool v) |
void | add_boolean_property (std::string const &tag_name, std::string const &property) |
void | add_property (std::string const &tag_name, std::string const &property, validator_type const &val) |
void | add_property (std::string const &tag_name, std::string const &property, booster::regex const &r) |
void | add_integer_property (std::string const &tag_name, std::string const &property) |
void | add_uri_property (std::string const &tag_name, std::string const &property) |
void | add_uri_property (std::string const &tag_name, std::string const &property, std::string const &schema) |
bool | comments_allowed () const |
void | comments_allowed (bool comments) |
void | encoding (std::string const &enc) |
Static Public Member Functions | |
static CPPCMS_DEPRECATED booster::regex | uri_matcher () |
static CPPCMS_DEPRECATED booster::regex | uri_matcher (std::string const &schema) |
static validator_type | uri_validator () |
static validator_type | uri_validator (std::string const &scheme, bool absolute_only=false) |
static validator_type | relative_uri_validator () |
The class that holds XSS filter rules.
This is the major class the defines the white list rules to handle the Correct HTML input.
When using these rules you should be very strict about what you need and what you allow.
Basically you need to specify:
Remember more strict you are it is harder to make attack. Read about XSS, see existing attacks to understand how they work and then decide what you allow.
rules class can be treated as value for thread safe access, i.e. you can safely use const reference and const member functions as long as you don't change the rules under the hood.
The simplest way: define at application startup some global rules object configure it and use it for filtering and validation - and make your attackers cry :-).
typedef booster::function<bool(char const *begin,char const *end)> cppcms::xss::rules::validator_type |
Functor that allows to provide custom validations for different properties
cppcms::xss::rules::rules | ( | json::value const & | r | ) |
Create rules from JSON object r
The json object the defines the XSS prevention rules. This object has following properties:
"pairs" - array of objects that consists of two properities "tag" and "attr" of type string that define tag and attributed that such type of property should be allowed for.
The extra properties that are not defined by this scheme are ingored
For example:
cppcms::xss::rules::rules | ( | std::string const & | file_name | ) |
Create rules from the JSON object stored in the file file_name
void cppcms::xss::rules::add_boolean_property | ( | std::string const & | tag_name, |
std::string const & | property | ||
) |
Add the property that should be allowed to appear for specific tag as boolean property like checked="checked", when the type is HTML it is case insensitive.
The property should be ASCII only
void cppcms::xss::rules::add_entity | ( | std::string const & | name | ) |
Add allowed HTML entity, by default only "lt", "gt", "quot" and "amp" are allowed
void cppcms::xss::rules::add_integer_property | ( | std::string const & | tag_name, |
std::string const & | property | ||
) |
Add numeric property, same as add_property(tag_name,property,booster::regex("-?[0-9]+") but little bit more efficient
void cppcms::xss::rules::add_property | ( | std::string const & | tag_name, |
std::string const & | property, | ||
validator_type const & | val | ||
) |
Add the property that should be checked using custom functor
void cppcms::xss::rules::add_property | ( | std::string const & | tag_name, |
std::string const & | property, | ||
booster::regex const & | r | ||
) |
Add the property that should be checked using regular expression.
Add the tag that should be allowed to appear in the text, for HTML the name is case insensitive, i.e. "br", "Br", "bR" and "BR" are valid tags for name "br".
The name should be ASCII only
void cppcms::xss::rules::add_uri_property | ( | std::string const & | tag_name, |
std::string const & | property | ||
) |
Add URI property. It should be used for properties like like "href" or "src". It is very good idea to use it in order to prevent urls like javascript:alert('XSS')
It's behavior is same as add_property(tag_name,property,rules::uri_validator());
void cppcms::xss::rules::add_uri_property | ( | std::string const & | tag_name, |
std::string const & | property, | ||
std::string const & | schema | ||
) |
Add URI property, using regular expression that matches allowed schemas. It should be used for properties like like "href" or "src". It is very good idea to use it in order to prevent urls like javascript:alert('XSS')
It's behavior is same as add_property(tag_name,property,rules::uri_validator(schema));
bool cppcms::xss::rules::comments_allowed | ( | ) | const |
Check if the comments are allowed in the text
void cppcms::xss::rules::comments_allowed | ( | bool | comments | ) |
Set to true if the comments are allowed in the text
void cppcms::xss::rules::encoding | ( | std::string const & | enc | ) |
Set the character encoding of the source, otherwise encoding is not checked and assumed valid all invalid characters are removed from the text or replaced with default character
It is very important to specify this option. You may skip it if you are sure that the the input encoding was already validated using cppcms::form::text widget that handles character encoding validation by default.
In any case it is generally better to always specify this option.
html_type cppcms::xss::rules::html | ( | ) | const |
Get how to treat input - HTML or XHTML
void cppcms::xss::rules::html | ( | html_type | t | ) |
Set how to treat input - HTML or XHTML, it should be called first before you add any other rules
bool cppcms::xss::rules::numeric_entities_allowed | ( | ) | const |
Get if numeric entities are allowed, default is false
void cppcms::xss::rules::numeric_entities_allowed | ( | bool | v | ) |
Set if numeric entities are allowed
|
static |
Create a validator that checks that this URI is relative and it is safe for inclusion in URI property like href or src
|
static |
Create a regular expression that checks URI for safe inclusion in the property. By default it allows only: http, https, ftp, mailto, news, nntp.
If you need finer control over allowed schemas, use uri_matcher(std::string const&).
|
static |
Create a regular expression that checks URI for safe inclusion in the text, where schema is a regular expression that matches specific protocols that can be used.
For example:
|
static |
Create a validator that checks URI for safe inclusion in the property. By default it allows only: http, https, ftp, mailto, news, nntp.
If you need finer control over allowed schemas, use uri_validator(std::string const&).
|
static |
Create a validator that checks URI for safe inclusion in the property.
For example:
If you need finer control over allowed schemas, use uri_validator(std::string const&).