How to know if a page is blank or parked domain in ruby? -
this question has answer here:
- efficient way check parked domains? 1 answer
- method detect parked page? 4 answers
i trying find out httpstatus
of bunch of urls via ruby net::http
, problem blank pages parked domains return status of 200 ok
. there anyway can weed out these type of urls?
to clarify few points:
- http status not identify if domain or not parked. exist tell if went ok or not.
- to track down parked domains, need develop own approach park domain page html page...
few things can try:
- look css, js or text in page "park domain" mention. keywords may want for: domain available / parked / renewable / etc.
- test couple of different prefixes given domain (domain.com, asds.domain.com, fgffg.domain.com). if redirect same page, it's parked domain
- identify structure of parked domain pages main registrars. site having landing page matching structure parked domains
- build list of dns used parked domains. if domain managed 1 of dns in list, parked.
- use list of parked domain providers (see examples, links may broken)
sources:
Comments
Post a Comment