Disallow a self-reference on RSS widget save, which would DoS a site. Checking home/siteurl should cover the vast majority of cases. see #8910.

git-svn-id: http://svn.automattic.com/wordpress/trunk@17260 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2011-01-11 21:37:12 +00:00
parent b8c4418d50
commit 3e45fdb260
1 changed files with 4 additions and 0 deletions

View File

@ -712,6 +712,10 @@ class WP_Widget_RSS extends WP_Widget {
if ( empty($url) )
return;
// self-url destruction sequence
if ( $url == site_url() || $url == home_url() )
return;
$rss = fetch_feed($url);
$title = $instance['title'];
$desc = '';