mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
BUGFIX Fixed some potential security issues in BlogHolder page type
This commit is contained in:
parent
c3c97201d4
commit
224fe02c3b
@ -66,9 +66,8 @@ class BlogHolder extends Page {
|
|||||||
$dateCheck = '';
|
$dateCheck = '';
|
||||||
|
|
||||||
if($tag) {
|
if($tag) {
|
||||||
$SQL_tag = addslashes($tag);
|
$SQL_tag = Convert::raw2sql($tag);
|
||||||
$SQL_tag = str_replace(array("\\",'_','%',"'"), array("\\\\","\\_","\\%","\\'"), $tag);
|
$tagCheck = "AND `BlogEntry`.Tags LIKE '%$SQL_tag%'";
|
||||||
$tagCheck = "AND `BlogEntry`.Tags LIKE '%$tag%'";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if($date) {
|
if($date) {
|
||||||
@ -95,9 +94,8 @@ class BlogHolder extends Page {
|
|||||||
*/
|
*/
|
||||||
function ShowTag() {
|
function ShowTag() {
|
||||||
if(Director::urlParam('Action') == 'tag') {
|
if(Director::urlParam('Action') == 'tag') {
|
||||||
return Director::urlParam('ID');
|
return Convert::raw2xml(Director::urlParam('ID'));
|
||||||
}
|
}
|
||||||
return isset($_GET['tag']) ? $_GET['tag'] : false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -112,7 +110,7 @@ class BlogHolder extends Page {
|
|||||||
|
|
||||||
$id = 0;
|
$id = 0;
|
||||||
if(Director::urlParam('ID')) {
|
if(Director::urlParam('ID')) {
|
||||||
$id = Director::urlParam('ID');
|
$id = (int) Director::urlParam('ID');
|
||||||
}
|
}
|
||||||
|
|
||||||
$codeparser = new BBCodeParser();
|
$codeparser = new BBCodeParser();
|
||||||
@ -228,11 +226,6 @@ class BlogHolder_Controller extends Page_Controller {
|
|||||||
$tag = '';
|
$tag = '';
|
||||||
$date = '';
|
$date = '';
|
||||||
|
|
||||||
if(isset($_GET['tag'])) {
|
|
||||||
$tag = $_GET['tag'];
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
if(Director::urlParams()) {
|
if(Director::urlParams()) {
|
||||||
if(Director::urlParam('Action') == 'tag') {
|
if(Director::urlParam('Action') == 'tag') {
|
||||||
$tag = Director::urlParam('ID');
|
$tag = Director::urlParam('ID');
|
||||||
@ -271,6 +264,7 @@ class BlogHolder_Controller extends Page_Controller {
|
|||||||
|
|
||||||
return $output;
|
return $output;
|
||||||
}
|
}
|
||||||
|
|
||||||
function tag() {
|
function tag() {
|
||||||
if($this->ShowTag()) {
|
if($this->ShowTag()) {
|
||||||
return array(
|
return array(
|
||||||
|
Loading…
Reference in New Issue
Block a user