Bulk RDAP

ben

Well-known member
Joined
Jul 8, 2024
Posts
817
Reaction score
521
Trophy points
94
Built this for my own internal tooling, as I couldn't find a decent reliable one focused on UK domains.

Features:
  • Bulk .UK RDAP lookups
  • Current holding TAG
  • Registrar name
  • Original registering TAG, where available
  • Last transfer date, where available
  • Registration status
  • Registry statuses
  • Expiry date
  • Expected drop date and exact UTC drop time
  • Pending delete detection
  • Registered / no registration found highlighting
  • Search, filter and sort results
  • Copy results
  • Custom CSV export with selectable columns
  • Mobile-friendly results view
  • Runs within Nominet’s rate limits, on JS so you get 1000 queries a day per your IP.
Basically, a lightweight quick tool to get the info you need.

The export to CSV is nice, you can select which info you need on the CSV too. Give it a whirl and see if it's useful for you.

Bulk RDAP tool
 
Nice ... I finished a python script a few days and had it processing a massive city, town & village list and checking to see if was registered in either .co.uk or .uk
It processed another list with about 65'000 lines in (1 domain = 2 lines ).. processed that in under 8 hours :D
 
As a little tip, depending on what you coded it in one way to massively reduce a list without affecting your limit just to see if a domain exists or not is to perform a dig query... a DNS resolver will return NXDOMAIN if the domain isn't registered.
That way you can perform a hell of a lot of simultaneous queries by using a list of IP's like google, cloudflare etc DNS resolvers and just doing a round robin for each domain in the list.
 
  • Like
Reactions: ben
As a little tip, depending on what you coded it in one way to massively reduce a list without affecting your limit just to see if a domain exists or not is to perform a dig query... a DNS resolver will return NXDOMAIN if the domain isn't registered.
That way you can perform a hell of a lot of simultaneous queries by using a list of IP's like google, cloudflare etc DNS resolvers and just doing a round robin for each domain in the list.
Genuinely great advice. This was more for internal tooling for us, we want to see which domains were moving to what tags etc. but this is interesting solution to the problem you described.
 
I can send a few variants of my script if you want...
I've just checked 13490 girls names in both extensions in less than 2 hours lol
 
Back
Top