summaryrefslogtreecommitdiffhomepage
path: root/plugins
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2020-04-19 18:17:48 +0200
committerRoland Reichwein <mail@reichwein.it>2020-04-19 18:17:48 +0200
commite093da01dcefac72502b4fa0c8375760cf98934e (patch)
tree674b4a24ac610f2b5aee053787e1b5349246e816 /plugins
parent447a5474ddf8b1eb66f3bfd510cf8108e1cb8fcb (diff)
Bugfix: urldecode
Diffstat (limited to 'plugins')
-rw-r--r--plugins/webbox/webbox.cpp35
1 files changed, 33 insertions, 2 deletions
diff --git a/plugins/webbox/webbox.cpp b/plugins/webbox/webbox.cpp
index 3cfd616..7d15ee9 100644
--- a/plugins/webbox/webbox.cpp
+++ b/plugins/webbox/webbox.cpp
@@ -30,6 +30,7 @@ namespace {
static const std::string PROGRAMVERSION{"Webbox 2.0"};
static const std::string DOWNLOAD_FILENAME{"webbox-download.zip"};
+ // TODO: separate out
class Tempfile
{
fs::path m_path;
@@ -65,6 +66,36 @@ namespace {
{ "500", "Internal Server Error" }
};
+ std::string urlDecode(std::string s)
+ {
+ std::string result;
+
+ size_t pos = 0;
+ while (pos < s.size()) {
+ char c {s[pos]};
+ if (c == '+') {
+ result += ' ';
+ } else if (c == '%' && pos + 2 < s.size()) {
+ try {
+ int i = stoi(s.substr(pos + 1, 2), 0, 16);
+ if (i < 0 || i > 255)
+ return result;
+
+ result += static_cast<char>(i);
+ } catch (...) {
+ return result;
+ }
+
+ pos += 2;
+ } else {
+ result += c;
+ }
+ pos++;
+ }
+
+ return result;
+ }
+
std::unordered_map<std::string, std::string> ParseQueryString(std::string s)
{
std::unordered_map<std::string, std::string> result;
@@ -75,7 +106,7 @@ namespace {
for (auto i: list) {
pos = i.find('=');
if (pos != i.npos) {
- result[i.substr(0, pos)] = i.substr(pos + 1);
+ result[urlDecode(i.substr(0, pos))] = urlDecode(i.substr(pos + 1));
}
}
}
@@ -145,7 +176,7 @@ public:
}
// Set parameters from FastCGI request environment
- m_pathInfo = p.m_GetRequestParam("rel_target");
+ m_pathInfo = urlDecode(p.m_GetRequestParam("rel_target"));
size_t pos {m_pathInfo.find('?')};
if (pos != m_pathInfo.npos) {
m_pathInfo = m_pathInfo.substr(0, pos);