Adds support to urlDecodeUni transformation

This commit is contained in:
Felipe Zimmerle
2015-08-05 22:54:48 -03:00
parent 6dad6af4a9
commit 522f195aa0
7 changed files with 171 additions and 14 deletions

View File

@@ -30,7 +30,9 @@ namespace transformations {
class UrlDecodeUni : public Transformation {
public:
explicit UrlDecodeUni(std::string action);
explicit UrlDecodeUni(std::string action)
: Transformation(action) { }
std::string evaluate(std::string exp,
Assay *assay) override;
};