mirror of
https://github.com/sbrl/Pepperminty-Wiki.git
synced 2024-11-22 16:33:00 +00:00
page-list: Yep, you guessed it! XSS again.....
This commit is contained in:
parent
7aaded1f40
commit
e2517c0b20
1 changed files with 7 additions and 7 deletions
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
register_module([
|
register_module([
|
||||||
"name" => "Page list",
|
"name" => "Page list",
|
||||||
"version" => "0.11.4",
|
"version" => "0.11.5",
|
||||||
"author" => "Starbeamrainbowlabs",
|
"author" => "Starbeamrainbowlabs",
|
||||||
"description" => "Adds a page that lists all the pages in the index along with their metadata.",
|
"description" => "Adds a page that lists all the pages in the index along with their metadata.",
|
||||||
"id" => "page-list",
|
"id" => "page-list",
|
||||||
|
@ -60,7 +60,7 @@ register_module([
|
||||||
|
|
||||||
default:
|
default:
|
||||||
http_response_code(400);
|
http_response_code(400);
|
||||||
exit(page_renderer::render_main("Format error - $settings->sitename", "<p>Error: The format '$format' is not currently supported by this action on $settings->sitename. Supported formats: " . implode(", ", $supported_formats) . "."));
|
exit(page_renderer::render_main("Format error - $settings->sitename", "<p>Error: The format '".htmlentities($format)."' is not currently supported by this action on $settings->sitename. Supported formats: " . htmlentities(implode(", ", $supported_formats)) . "."));
|
||||||
}
|
}
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -91,7 +91,7 @@ register_module([
|
||||||
|
|
||||||
if(!in_array($format, $supported_formats)) {
|
if(!in_array($format, $supported_formats)) {
|
||||||
http_response_code(400);
|
http_response_code(400);
|
||||||
exit(page_renderer::render_main("Format error - $settings->sitename", "<p>Error: The format '$format' is not currently supported by this action on $settings->sitename. Supported formats: " . implode(", ", $supported_formats) . "."));
|
exit(page_renderer::render_main("Format error - $settings->sitename", "<p>Error: The format '".htmlentities($format)."' is not currently supported by this action on $settings->sitename. Supported formats: " . htmlentities(implode(", ", $supported_formats)) . "."));
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!isset($_GET["tag"]))
|
if(!isset($_GET["tag"]))
|
||||||
|
@ -107,7 +107,7 @@ register_module([
|
||||||
$content = "<h1>All tags</h1>
|
$content = "<h1>All tags</h1>
|
||||||
<ul class='tag-list'>\n";
|
<ul class='tag-list'>\n";
|
||||||
foreach($all_tags as $tag) {
|
foreach($all_tags as $tag) {
|
||||||
$content .= " <li><a href='?action=list-tags&tag=" . rawurlencode($tag) . "' class='mini-tag'>$tag</a></li>\n";
|
$content .= " <li><a href='?action=list-tags&tag=" . rawurlencode($tag) . "' class='mini-tag'>".htmlentities($tag)."</a></li>\n";
|
||||||
}
|
}
|
||||||
$content .= "</ul>\n";
|
$content .= "</ul>\n";
|
||||||
|
|
||||||
|
@ -139,7 +139,7 @@ register_module([
|
||||||
switch($format)
|
switch($format)
|
||||||
{
|
{
|
||||||
case "html":
|
case "html":
|
||||||
$content = "<h1>Tag List: $tag</h1>\n";
|
$content = "<h1>Tag List: ".htmlentities($tag)."</h1>\n";
|
||||||
$content .= generate_page_list($pagelist);
|
$content .= generate_page_list($pagelist);
|
||||||
|
|
||||||
$content .= "<p>(<a href='?action=list-tags'>All tags</a>)</p>\n";
|
$content .= "<p>(<a href='?action=list-tags'>All tags</a>)</p>\n";
|
||||||
|
@ -284,7 +284,7 @@ function generate_page_list($pagelist)
|
||||||
$tags = substr($tags, 0, -2); // Remove the last ", " from the tag list
|
$tags = substr($tags, 0, -2); // Remove the last ", " from the tag list
|
||||||
}
|
}
|
||||||
|
|
||||||
$pageDisplayName = $pagename;
|
$pageDisplayName = htmlentities($pagename);
|
||||||
if(isset($pageindex->$pagename) and
|
if(isset($pageindex->$pagename) and
|
||||||
!empty($pageindex->$pagename->redirect))
|
!empty($pageindex->$pagename->redirect))
|
||||||
$pageDisplayName = "<em>$pageDisplayName</em>";
|
$pageDisplayName = "<em>$pageDisplayName</em>";
|
||||||
|
@ -295,7 +295,7 @@ function generate_page_list($pagelist)
|
||||||
|
|
||||||
$result .= "<li><a href='$url'>$pageDisplayName</a>
|
$result .= "<li><a href='$url'>$pageDisplayName</a>
|
||||||
<em class='size'>(" . human_filesize($pageindex->$pagename->size) . ")</em>
|
<em class='size'>(" . human_filesize($pageindex->$pagename->size) . ")</em>
|
||||||
<span class='editor'><span class='texticon cursor-query' title='Last editor'>✎</span> " . $pageindex->$pagename->lasteditor . "</span>
|
<span class='editor'><span class='texticon cursor-query' title='Last editor'>✎</span> " . htmlentities($pageindex->$pagename->lasteditor) . "</span>
|
||||||
<time class='cursor-query' title='" . date("l jS \of F Y \a\\t h:ia T", $pageindex->$pagename->lastmodified) . "'>" . human_time_since($pageindex->$pagename->lastmodified) . "</time>
|
<time class='cursor-query' title='" . date("l jS \of F Y \a\\t h:ia T", $pageindex->$pagename->lastmodified) . "'>" . human_time_since($pageindex->$pagename->lastmodified) . "</time>
|
||||||
<span class='tags'>$tags</span></li>";
|
<span class='tags'>$tags</span></li>";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue