You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is an incorrect mapping of the lookup results due to the fact that the const that holds these results expects 9 results, while 10 lookups are being perfomed:
const[a,aaaa,mx,txt,ns,cname,soa,srv,ptr]=awaitPromise.all([lookupPromise(hostname),resolve4Promise(hostname).catch(()=>[]),// A recordresolve6Promise(hostname).catch(()=>[]),// AAAA recordresolveMxPromise(hostname).catch(()=>[]),// MX recordresolveTxtPromise(hostname).catch(()=>[]),// TXT recordresolveNsPromise(hostname).catch(()=>[]),// NS recordresolveCnamePromise(hostname).catch(()=>[]),// CNAME recordresolveSoaPromise(hostname).catch(()=>[]),// SOA recordresolveSrvPromise(hostname).catch(()=>[]),// SRV recordresolvePtrPromise(hostname).catch(()=>[])// PTR record]);
lookupPromise() should be removed, or an extra entry in to the const that accounts for the results of lookupPromise() should be added.
Running a check on a site at: https://web-check.as93.net/
In the "DNS Records" box - the records shown are out of order and not titled correctly.
In the example below you can see that under "CNAME" it has the Nameservers, and under NS it appears to be showint TXT records...
The text was updated successfully, but these errors were encountered: