Fast concurrent checking of SOA DNS records for .co.za domains

前端 未结 2 1480
长情又很酷
长情又很酷 2021-01-23 01:15

I want to implement bulk availability checking of .co.za domain names as accurately as possible by checking for the existence of SOA

相关标签:
2条回答
  • 2021-01-23 01:48

    If the service offered on the Web "limits consecutive checks for a given IP", it is probably for good reasons (both to preserve the system and to make life more difficult for speculators). Calling it "archaic" certainly will not help.

    Also, a lot of DNS requests may be seen as a violation of the terms of service and/or as a dictionary attack and may (disclaimer: I do not know the policies of co.za) lead to blacklisting.

    0 讨论(0)
  • 2021-01-23 01:57

    This would be very easy using JH Software's DNS Client Library for .NET:

    var Response = JHSoftware.DnsClient.Lookup("example.com", 
                                  JHSoftware.DnsClient.RecordType.SOA);
    

    It also supports BeginLookup / EndLookup methods for asynchronous lookups.

    0 讨论(0)
提交回复
热议问题