Code Monkey home page Code Monkey logo

Comments (5)

tmuka avatar tmuka commented on July 30, 2024 1

It seems the same thing happens to me with .org domains such as "godaddy.org"
It works fine with the domain "godaddy.com"
I also notice the rawdata shows first in the output on the TLDs that don't populate the regyinfo['registrar'] data.

rawdata->Array
 0->Domain Name: godaddy.org
 1->Registry Domain ID: 232dce94a461421280a83aa3c57abfe4-LROR
 2->Registrar WHOIS Server: http://whois.godaddy.com
 3->Registrar URL: http://www.whois.godaddy.com
 4->Updated Date: 2023-06-07T05:34:56Z
 5->Creation Date: 2002-04-19T19:41:43Z
 6->Registry Expiry Date: 2024-04-19T19:41:43Z
 7->Registrar: GoDaddy.com, LLC
 8->Registrar IANA ID: 146
 9->Registrar Abuse Contact Email: [email protected]
 10->Registrar Abuse Contact Phone: +1.4806242505
 11->Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
 12->Domain Status: serverDeleteProhibited https://icann.org/epp#serverDeleteProhibited
 13->Domain Status: clientRenewProhibited https://icann.org/epp#clientRenewProhibited
 14->Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
 15->Domain Status: serverTransferProhibited https://icann.org/epp#serverTransferProhibited
 16->Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
 17->Registry Registrant ID: REDACTED FOR PRIVACY
 18->Registrant Name: REDACTED FOR PRIVACY
 19->Registrant Organization: Domains By Proxy, LLC
 20->Registrant Street: REDACTED FOR PRIVACY
 21->Registrant City: REDACTED FOR PRIVACY
 22->Registrant State/Province: Arizona
 23->Registrant Postal Code: REDACTED FOR PRIVACY
 24->Registrant Country: US
 25->Registrant Phone: REDACTED FOR PRIVACY
 26->Registrant Phone Ext: REDACTED FOR PRIVACY
 27->Registrant Fax: REDACTED FOR PRIVACY
 28->Registrant Fax Ext: REDACTED FOR PRIVACY
 29->Registrant Email: Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain name.
 30->Registry Admin ID: REDACTED FOR PRIVACY
 31->Admin Name: REDACTED FOR PRIVACY
 32->Admin Organization: REDACTED FOR PRIVACY
 33->Admin Street: REDACTED FOR PRIVACY
 34->Admin City: REDACTED FOR PRIVACY
 35->Admin State/Province: REDACTED FOR PRIVACY
 36->Admin Postal Code: REDACTED FOR PRIVACY
 37->Admin Country: REDACTED FOR PRIVACY
 38->Admin Phone: REDACTED FOR PRIVACY
 39->Admin Phone Ext: REDACTED FOR PRIVACY
 40->Admin Fax: REDACTED FOR PRIVACY
 41->Admin Fax Ext: REDACTED FOR PRIVACY
 42->Admin Email: Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain name.
 43->Registry Tech ID: REDACTED FOR PRIVACY
 44->Tech Name: REDACTED FOR PRIVACY
 45->Tech Organization: REDACTED FOR PRIVACY
 46->Tech Street: REDACTED FOR PRIVACY
 47->Tech City: REDACTED FOR PRIVACY
 48->Tech State/Province: REDACTED FOR PRIVACY
 49->Tech Postal Code: REDACTED FOR PRIVACY
 50->Tech Country: REDACTED FOR PRIVACY
 51->Tech Phone: REDACTED FOR PRIVACY
 52->Tech Phone Ext: REDACTED FOR PRIVACY
 53->Tech Fax: REDACTED FOR PRIVACY
 54->Tech Fax Ext: REDACTED FOR PRIVACY
 55->Tech Email: Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain name.
 56->Name Server: pdns05.domaincontrol.com
 57->Name Server: pdns06.domaincontrol.com
 58->DNSSEC: unsigned
 59->URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
 60->>>> Last update of WHOIS database: 2023-08-01T19:32:45Z <<<
 61->
 62->For more information on Whois status codes, please visit https://icann.org/epp
 63->
 64->Terms of Use: Access to Public Interest Registry WHOIS information is provided to assist persons in determining the contents of a domain name registration record in the Public Interest Registry registry database. The data in this record is provided by Public Interest Registry for informational purposes only, and Public Interest Registry does not guarantee its accuracy. This service is intended only for query-based access. You agree that you will use this data only for lawful purposes and that, under no circumstances will you use this data to (a) allow, enable, or otherwise support the transmission by e-mail, telephone, or facsimile of mass unsolicited, commercial advertising or solicitations to entities other than the data recipient's own existing customers; or (b) enable high volume, automated, electronic processes that send queries or data to the systems of Registry Operator, a Registrar, or Identity Digital except as reasonably necessary to register domain names or modify existing registrations. All rights reserved. Public Interest Registry reserves the right to modify these terms at any time. By submitting this query, you agree to abide by this policy.  The Registrar of Record identified in this output may have an RDDS service that can be queried for additional information on how to contact the Registrant, Admin, or Tech contact of the queried domain name.
regyinfo->Array
 servers->Array
  0->Array
   server->whois.pir.org
   args->godaddy.org
   port->43
 type->domain
regrinfo->Array
 domain->Array
  name->godaddy.org
  nserver->Array
   pdns05.domaincontrol.com->97.74.110.52
   pdns06.domaincontrol.com->173.201.78.52
 registered->yes

from phpwhois.

kevinoo avatar kevinoo commented on July 30, 2024 1

Thanks so much @tmuka for the debug's info 😊
It will surely help me to find and fix the problem 🤓

These days I will find time to check the code 💪🏻

from phpwhois.

kevinoo avatar kevinoo commented on July 30, 2024 1

Hi @tmuka,
I fixed in all files the code, parsing the raw_data before returns the response 🤙

Thanks again for the suggestion 💪

from phpwhois.

kevinoo avatar kevinoo commented on July 30, 2024

Hi @tmuka
I checked the code you reported and created a UnitTest to understand the behavior you reported. 💪

I found the problem, currently in the "Handler(s)" the $raw_data is not parsed to return the information, but they are (almost) always hardcoded 🤕

At the moment I have fixed CoopHandler, however before creating a new release, I would like to check the other handlers as well in order to publish a complete release. 🙏

Thanks,
Kevin

from phpwhois.

tmuka avatar tmuka commented on July 30, 2024

Awesome! thanks so much for the update. glad you were able to figure out what was going on. I'll give the dev version a try

from phpwhois.

Related Issues (9)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.