Skip to content

Instantly share code, notes, and snippets.

@jgamblin
Last active April 14, 2017 04:36
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jgamblin/a353c8553e5dda51784d5b0614358aed to your computer and use it in GitHub Desktop.
Save jgamblin/a353c8553e5dda51784d5b0614358aed to your computer and use it in GitHub Desktop.
Small Script To Search For Keywords In Domains Registered Today
#!/bin/bash
#requires curl and jq
search="$1"
curl -s 'https://domainpunch.com/premium/lib/php/ajax/grid.php?cmd=wordmon&columns=id,name,zoneid,length,idn,&_search=true&nd=1492088036460&rows=1000&page=1&sidx=length&sord=asc&filters=%7B%22groupOp%22%3A%22AND%22%2C%22rules%22%3A%5B%7B%22field%22%3A%22name%22%2C%22op%22%3A%22cn%22%2C%22data%22%3A%22'$search'%22%7D%5D%7D' -H 'Accept: application/json, text/javascript, */*; q=0.01' -H 'Referer: https://domainpunch.com/premium/wordmon.php' -H 'X-Requested-With: XMLHttpRequest' -H 'Connection: keep-alive' --compressed | jq -C -r '.rows[]?.name'
@gilzow
Copy link

gilzow commented Apr 13, 2017

👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment