aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-02-24 15:41:15 -0800
committerFriendika <info@friendika.com>2011-02-24 15:41:15 -0800
commit1207bb1b55f402074a73d9ff0221ff8c9a6a285a (patch)
tree25428c7b2da873cc7812520a29ef4c582a63712f /boot.php
parentf6788dc5f670e852ea9e1be001892527e5ae76dd (diff)
downloadvolse-hubzilla-1207bb1b55f402074a73d9ff0221ff8c9a6a285a.tar.gz
volse-hubzilla-1207bb1b55f402074a73d9ff0221ff8c9a6a285a.tar.bz2
volse-hubzilla-1207bb1b55f402074a73d9ff0221ff8c9a6a285a.zip
silence parse_url on hostile input, need to get_app() for proc_run php location
Diffstat (limited to 'boot.php')
-rw-r--r--boot.php15
1 files changed, 9 insertions, 6 deletions
diff --git a/boot.php b/boot.php
index dc92d8dbb..77ff23056 100644
--- a/boot.php
+++ b/boot.php
@@ -300,7 +300,7 @@ class App {
}
function set_baseurl($url) {
- $parsed = parse_url($url);
+ $parsed = @parse_url($url);
$this->baseurl = $url;
@@ -626,7 +626,7 @@ function fetch_url($url,$binary = false, &$redirects = 0) {
$matches = array();
preg_match('/(Location:|URI:)(.*?)\n/', $header, $matches);
$url = trim(array_pop($matches));
- $url_parsed = parse_url($url);
+ $url_parsed = @parse_url($url);
if (isset($url_parsed)) {
$redirects++;
return fetch_url($url,$binary,$redirects);
@@ -698,7 +698,7 @@ function post_url($url,$params, $headers = null, &$redirects = 0) {
$matches = array();
preg_match('/(Location:|URI:)(.*?)\n/', $header, $matches);
$url = trim(array_pop($matches));
- $url_parsed = parse_url($url);
+ $url_parsed = @parse_url($url);
if (isset($url_parsed)) {
$redirects++;
return post_url($url,$binary,$headers,$redirects);
@@ -1423,7 +1423,7 @@ function lrdd($uri) {
// get the host meta file
- $host = parse_url($uri);
+ $host = @parse_url($uri);
if($host) {
$url = ((x($host,'scheme')) ? $host['scheme'] : 'http') . '://';
@@ -1684,7 +1684,7 @@ if(! function_exists('validate_url')) {
function validate_url(&$url) {
if(substr($url,0,4) != 'http')
$url = 'http://' . $url;
- $h = parse_url($url);
+ $h = @parse_url($url);
if(($h) && (dns_get_record($h['host'], DNS_A + DNS_CNAME + DNS_PTR))) {
return true;
@@ -1715,7 +1715,7 @@ function validate_email($addr) {
if(! function_exists('allowed_url')) {
function allowed_url($url) {
- $h = parse_url($url);
+ $h = @parse_url($url);
if(! $h) {
return false;
@@ -2438,6 +2438,9 @@ function prepare_body($item) {
if(! function_exists('proc_run')) {
function proc_run($cmd){
+
+ $a = get_app();
+
$args = func_get_args();
call_hooks("proc_run", $args);