Delicious Bookmark this on Delicious Share on Facebook SlashdotSlashdot It! Digg! Digg



PHP : Function Reference : Network Functions : checkdnsrr

checkdnsrr

Check DNS records corresponding to a given Internet host name or IP address (PHP 4, PHP 5)
int checkdnsrr ( string host [, string type] )


Related Examples ( Source code ) » checkdnsrr








Code Examples / Notes » checkdnsrr

jon

With many email address validity functions listed here, it's worth mentioning that the boolean output of an email address validity function should never be treated as definitive with respect to displaying errors and restricting what the user of a web app can do.
In more simple terms, if a user-supplied email address fails a validity check, don't tell the user the email address they entered is invalid and force them to enter something different.
Use such email validity checks as guidelines only, word errors to state that the email address might be invalid, ask the user to check and always always give the user the option of bypassing the validity check - it's really infuriating to be told your email address is invalid when you know for sure this is not the case!


patrick

This is a little code example that will validate an email address in two ways:
- first the general syntax of the string is checked with a regular expression
- then the domain substring (after the '@') is checked using the 'checkdnsrr' function
<?php
function validate_email($email){
  $exp = "^[a-z\'0-9]+([._-][a-z\'0-9]+)*@([a-z0-9]+([._-][a-z0-9]+))+$";
  if(eregi($exp,$email)){
     if(checkdnsrr(array_pop(explode("@",$email)),"MX")){
       return true;
     }else{
       return false;
     }
  }else{
     return false;
  }
}
?>


kriek

The checkdnsrr function is not implemented on the Windows platform. The way to get around this problem is to write your own version of checkdnsrr. Example: myCheckDNSRR
<?php
function myCheckDNSRR($hostName, $recType = '')
{
if(!empty($hostName)) {
  if( $recType == '' ) $recType = "MX";
  exec("nslookup -type=$recType $hostName", $result);
  // check each line to find the one that starts with the host
  // name. If it exists then the function succeeded.
  foreach ($result as $line) {
    if(eregi("^$hostName",$line)) {
      return true;
    }
  }
  // otherwise there was no mail handler for the domain
  return false;
}
return false;
}
?>
Note that the type parameter is optional, and if you don't supply it then the type defaults to "MX" (which means Mail Exchange). If any records are found, the function returns TRUE. Otherwise, it returns FALSE.


dave146

The .museum TLD is weird.  All undefined second-level domains resolve to 195.7.77.20 (a/k/a index.museum).  So checkdnsrr() doesn't tell you anything at all about second-level domains under .museum.
-Dave
Editors note:
This applies to all TLDs that have a wildcard covering all non-existant domains. This may at some point in the future include .com or .net and does already cover other domains. If you are unsure just try a couple of random domains that can't possibly exist. If they both resolve to the same IP address and checkdnserr() returns false, you may have to check the IP.


picaune

On Windows NT machines (inc. 2000, XP, 2003, .net, Longhorn) you can emulate this function by spoonfeeding the nslookup proglet.
After spitting out some info on which DNS server it's using, the daemon presents a "> " prompt. At this point if you enter a domain name a list of A records will be returned from the default name server. The sixth line of output has "Address: " followed by the IPv4 address in dotted-quad notation. You may enter "set type=" followed by the IP type. Currently the only supported IP class is IN (Internet); the others are no longer supported. You can exit by entering "exit".
You may perform a one-shot lookup by passing the domain name as a command line argument; in this case nslookup will automatically perform an A lookup on the default name server and exit. The IPv4 address is on the last line with non-whitespace.
Additional information and options can be obtained by running nslookup and then searching for "?".


sven

Note to Patrick's regular expression (from 14-Dec-2004):
Don't use it as it will not recognize every valid email address, because valid domain names do not pass the regex.
For example: test--domain.com is a perfectly valid domain, but won't be recognized as such.
If you have to use a regular expression as a first filter, then either use the complete complex form based on RFC2822, or stick to the most basic regex like this:
".+@.+\..+."
Explanation: The username in front of the @ can include every known character in the world - it has to be escaped somehow, but dealing with this is a mess.
The shortest possible domain name is 1 character long, not 2 or 3 (although many registries impose such arbitrary rules on domain names). Try www.x.org if you don't believe this. :)
Only the top level domain consists of at least 2 characters (country code tld), but there should be no upper limit. Many had to learn the hard way as .info became available. And .museum. Maybe there will be .solarsystem someday.
So the shortest possible email address consists of 6 characters: "a@b.cd".
I do not use more specific character classes for the domain names because we have international domain names, which opens up the whole unicode range as valid characters. Converting these into useable dns domain names is a different task, best left to appropriate librarys such as PEAR's Net_IDNA.
Rule of thumb: Don't assume too much. If a string doesn't contain an "@"-sign and a dot after that, then it surely is no email address, and no further checking needs to take place. Everything else should go one step further.


fox dot 69

maybe usefull, a blacklist (DNSBL) check function:
<?php
function is_blacklisted($ip) {
   $dnsbl_check=array("bl.spamcop.net",
                      "relays.osirusoft.com",
                      "list.dsbl.org",
                      "sbl.spamhaus.org");
   if ($ip) {
      $quads=explode(".",$ip);
       $rip=$quads[3].".".$quads[2].".".$quads[1].".".$quads[0];
       for ($i=0; $i<count($dnsbl_check); $i++) {
           if (checkdnsrr($rip.".".$dnsbl_check[$i],"A")) {
               $listed.=$dnsbl_check[$i]." ";
           }
        }
      if ($listed) { return $listed; } else { return FALSE; }
   }
}
?>


plasma

In response to fox dot 69 at gmx dot net's dnsbl function:
<?php
function is_blacklisted($ip) {
  $dnsbl_check=array("bl.spamcop.net",
                      "relays.osirusoft.com",
                      "list.dsbl.org",
                      "sbl.spamhaus.org");
  if ($ip) {
      $quads=explode(".",$ip);
      $rip=$quads[3].".".$quads[2].".".$quads[1].".".$quads[0];
      for ($i=0; $i<count($dnsbl_check); $i++) {
          if (checkdnsrr($rip.".".$dnsbl_check[$i] . '.',"A")) {
              $listed.=$dnsbl_check[$i]." ";
          }
        }
      if ($listed) { return $listed; } else { return FALSE; }
  }
}
?>
Add a . after the $dnsbl_check[$i] so that it returns a valid response, I found this was not working (always returned the A record) when I didnt specify the . at the end:
          if (checkdnsrr($rip.".".$dnsbl_check[$i] . '.',"A")) {


tabascopete78

I was using file_get_contents on a set of URLs. Some of them URLs were invalid (the structure of it was ok but the DNS hosts couldn't resolve them) and I kept getting an annoying warning that I wanted to handle correctly. I wanted to check the DNS somehow but the existing check dns function in php doesn't have one for windows and the one a person supplied here does not work 100% of the time. (The reg exp is wrong.)
Instead use gethostbyname to try to resolve a host. This won't throw any warnings, you just need to check the output and it's all handled gracefully. You'll get the same warnings with fopen and fsockopen.
The only minor drawback is that on invalid hosts it takes a couple seconds to figure it out.


alex

Hi,
Interesting thing I've discovered regarding checkdnsrr. When querying a domain's status using the command, always append a dot to the end of the domain you are querying. I.e.
<?php
checkdnsrr($domain.'.')
?>
The dot is sometimes necessary if you are searching for a fully qualified domain which has the same name as a host on your local domain.. ie :-
You want to search for "our.info"
and you happen to have a node on your domain called :
our.info.ourdomain.com
If your DNS server is told to check 'ourdomain.com' before any other you will get a positive result when in fact our.info might not exist.
For this reason adding the dot enforces the root. Of course the dot does not alter results that were OK anyway.
Hope that helps some poor confused people :o)
Alex.


developer

Here is a simple and fully compatible implementation of checkdnsrr() for Windows.
If you include these lines at the beginning of your code, you do not need to change anything else in the code in order to work!
if(!function_exists('checkdnsrr'))
{
   function checkdnsrr($hostName, $recType = '')
   {
    if(!empty($hostName)) {
      if( $recType == '' ) $recType = "MX";
      exec("nslookup -type=$recType $hostName", $result);
      // check each line to find the one that starts with the host
      // name. If it exists then the function succeeded.
      foreach ($result as $line) {
        if(eregi("^$hostName",$line)) {
          return true;
        }
      }
      // otherwise there was no mail handler for the domain
      return false;
    }
    return false;
   }
}


reportingsjr

Here is a modification to the note below:
function check_email($email) {
if(preg_match('/^\w[-.\w]*@(\w[-._\w]*\.[a-zA-Z]{2,}.*)$/', $email, $matches))
{
if(function_exists('checkdnsrr'))
{
if(checkdnsrr($matches[1] . '.', 'MX')) return true;
if(checkdnsrr($matches[1] . '.', 'A')) return true;
}else{
if(!empty($hostName))
{
if( $recType == '' ) $recType = "MX";
exec("nslookup -type=$recType $hostName", $result);
foreach ($result as $line)
{
if(eregi("^$hostName",$line))
{
return true;
}
}
return false;
}
return false;
}
}
return false;
}
This makes it compatible with windows and will make sure it actually checks the domain.


satmd

fox dot 69 at gmx dot net: I wonder where you got this code from. I have written this piece of code half a year ago and released it WITH a copyright header that is missing now! Anyways... this code is to be considered licenced "as-is", however it'd be nice to keep the authors note (This is something about reputation, you see?). Thanks.
(Much) more recent version of it:
<?php
function is_blacklisted($ip) {
  // written by satmd, do what you want with it, but keep the author please
  $result=Array();
  $dnsbl_check=array("bl.spamcop.net",
                      "list.dsbl.org",
                      "sbl.spamhaus.org");
  if ($ip) {
      $quads=explode(".",$ip);
      $rip=$quads[3].".".$quads[2].".".$quads[1].".".$quads[0];
      for ($i=0; $i<count($dnsbl_check); $i++) {
          if (checkdnsrr($rip.".".$dnsbl_check[$i].".","A")) {
             $result[]=Array($dnsbl_check[$i],$rip.".".$dnsbl_check[$i]);
          }
        }
     return $result;
  }
}
?>
Beware that this code's signature differs from the original! I also removed osirusoft as its results are not useful anyways (false positives!). Please make sure that you have nscd or a caching dns server running as this code is prone to (d)dos! Only use it in places where it is necessary (when data is to be modified), e.g. the script processing uploads/posts/replies in a blog.


12-dec-2006 12:06

<?php
function check_dnsbl($ip)
{
$dnsbl_check=array("bl.spamcop.net","list.dsbl.org",
"sbl.spamhaus.org",'xbl.spamhaus.org');
if($ip){
$rip=implode('.',array_reverse(explode(".",$ip)));
foreach($dnsbl_check as $val){
if(checkdnsrr($rip.'.'.$val.'.','A'))
return $rip.'.'.$val;
}
}
return false;
}
?>


check dnsbl - win also

<?php
/*
* Check DNSBL - WIN also - DD
*/
function blacklisted($ip) {
$dnsbl_lists = array("bl.spamcop.net", "list.dsbl.org", "sbl.spamhaus.org");
if ($ip && preg_match('/^([0-9]{1, 3})\.([0-9]{1, 3})\.([0-9]{1, 3})\.([0-9]{1, 3})/', $ip)) {
$reverse_ip = implode(".", array_reverse(explode(".", $ip)));
$on_win = substr(PHP_OS, 0, 3) == "WIN" ? 1 : 0;
foreach ($dnsbl_lists as $dnsbl_list){
if (function_exists("checkdnsrr")) {
if (checkdnsrr($reverse_ip . "." . $dnsbl_list . ".", "A")) {
return $reverse_ip . "." . $dnsbl_list;
}
} else if ($on_win == 1) {
$lookup = "";
@exec("nslookup -type=A " . $reverse_ip . "." . $dnsbl_list . ".", $lookup);
foreach ($lookup as $line) {
if (strstr($line, $dnsbl_list)) {
return $reverse_ip . "." . $dnsbl_list;
}
}
}
}
}
return false;
}
?>


23-jul-2002 02:45

<?php
/******************************************************
These functions can be used on WindowsNT to replace
their built-in counterparts that do not work as
expected.
checkdnsrr_winNT() works just the same, returning true
or false
getmxrr_winNT() returns true or false and provides a
list of MX hosts in order of preference.
*******************************************************/
function checkdnsrr_winNT( $host, $type = '' )
{
   if( !empty( $host ) )
   {
       # Set Default Type:
       if( $type == '' ) $type = "MX";
       @exec( "nslookup -type=$type $host", $output );
       while( list( $k, $line ) = each( $output ) )
       {
           # Valid records begin with host name:
           if( eregi( "^$host", $line ) )
           {
               # record found:
               return true;
           }
       }
       return false;
   }
}
function getmxrr_winNT( $hostname, &$mxhosts )
{
   if( !is_array( $mxhosts ) ) $mxhosts = array();
   if( !empty( $hostname ) )
   {
       @exec( "nslookup -type=MX $hostname", $output, $ret );
       while( list( $k, $line ) = each( $output ) )
       {
           # Valid records begin with hostname:
           if( ereg( "^$hostname\tMX preference = ([0-9]+), mail exchanger = (.*)$", $line, $parts ) )
           {
               $mxhosts[ $parts[1] ] = $parts[2];
           }
       }
       if( count( $mxhosts ) )
       {
           reset( $mxhosts );
           ksort( $mxhosts );
           $i = 0;
           while( list( $pref, $host ) = each( $mxhosts ) )
           {
               $mxhosts2[$i] = $host;
               $i++;
           }
           $mxhosts = $mxhosts2;
           return true;
       }
       else
       {
           return false;
       }
   }
}
if ( getmxrr_winNT( "microsoft.com", $hosts ) )
{
echo count($hosts)."
";
for ($i=0; $i<=count($hosts); $i++){
echo $hosts[$i];}
}
?>


Change Language


Follow Navioo On Twitter
checkdnsrr
closelog
debugger_off
debugger_on
define_syslog_variables
dns_check_record
dns_get_mx
dns_get_record
fsockopen
gethostbyaddr
gethostbyname
gethostbynamel
getmxrr
getprotobyname
getprotobynumber
getservbyname
getservbyport
header
headers_list
headers_sent
inet_ntop
inet_pton
ip2long
long2ip
openlog
pfsockopen
setcookie
setrawcookie
socket_get_status
socket_set_blocking
socket_set_timeout
syslog
eXTReMe Tracker