From 954370bda476ad83458fde843a43f0477c6fcb42 Mon Sep 17 00:00:00 2001 From: epoch Date: Fri, 23 Aug 2013 18:22:48 +0000 Subject: updated whoid --- contrib/whoisd/whoisd.pl | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/contrib/whoisd/whoisd.pl b/contrib/whoisd/whoisd.pl index 8580475..06c2cdf 100755 --- a/contrib/whoisd/whoisd.pl +++ b/contrib/whoisd/whoisd.pl @@ -97,3 +97,12 @@ foreach(split(/\n/,`grep '^$QUERY\$' */owner | cut -d/ -f1`)) { $out =~ s/\n//g; printf "%-20s %s\n", "ASN" . ":", $out; } + +foreach(split(/\n/,`grep -i -e "^$QUERY\$" "$RESDB/db/dom"/*/*/owner`)) { + $out = $_; + $out =~ s/.*\/db\/dom\/(.+?)\/(.+?)\/owner.*/\2\.\1/; + if ($out ne "") { #fix this comparison. + printf "%-20s %s\n", "domain" . ":", $out; + } +} +#printf "%-20s %s\n", "notice:","$QUERY did not claim any domains yet"; -- cgit v1.2.3