How to know if a page is blank or parked domain in ruby? -


this question has answer here:

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:

  1. http status not identify if domain or not parked. exist tell if went ok or not.
  2. 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:

method detect parked page?

some key phrased parked domains gary sieling


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -