diff options
author | Friendika <info@friendika.com> | 2011-01-02 19:05:11 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-01-02 19:05:11 -0800 |
commit | 0fb3aa1b57dc2a1d58a839bc99d2098003778d33 (patch) | |
tree | 26ff418284db45d6bccd1e2a30a9bf88270e6b8c /boot.php | |
parent | b381dfa6c64719099c9f07c746f2ce9370d3a37a (diff) | |
download | volse-hubzilla-0fb3aa1b57dc2a1d58a839bc99d2098003778d33.tar.gz volse-hubzilla-0fb3aa1b57dc2a1d58a839bc99d2098003778d33.tar.bz2 volse-hubzilla-0fb3aa1b57dc2a1d58a839bc99d2098003778d33.zip |
valid host checks were returning true on TXT records and other useless garbage
Diffstat (limited to 'boot.php')
-rw-r--r-- | boot.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1481,7 +1481,7 @@ function validate_url(&$url) { $url = 'http://' . $url; $h = parse_url($url); - if(($h) && (checkdnsrr($h['host'], 'ANY'))) { + if(($h) && (dns_get_record($h['host'], DNS_A + DNS_CNAME + DNS_PTR))) { return true; } return false; @@ -1496,7 +1496,7 @@ function validate_email($addr) { return false; $h = substr($addr,strpos($addr,'@') + 1); - if(($h) && (checkdnsrr($h, 'ANY'))) { + if(($h) && (dns_get_record($h['host'], DNS_A + DNS_CNAME + DNS_PTR + DNS_MX))) { return true; } return false; |