From 85e32860a7dd614f433018d3e0371ecf4a96543f Mon Sep 17 00:00:00 2001 From: epoch Date: Fri, 23 Aug 2013 03:24:54 +0000 Subject: Added a whoisd to make for easier querying of the resdb's info. Read the source. --- contrib/whoisd/README | 8 ++++ contrib/whoisd/whoisd.pl | 99 ++++++++++++++++++++++++++++++++++++++++++++++++ db/usr/epoch/email | 1 + db/usr/epoch/irc | 1 + 4 files changed, 109 insertions(+) create mode 100644 contrib/whoisd/README create mode 100755 contrib/whoisd/whoisd.pl create mode 100644 db/usr/epoch/email create mode 100644 db/usr/epoch/irc diff --git a/contrib/whoisd/README b/contrib/whoisd/README new file mode 100644 index 0000000..228197c --- /dev/null +++ b/contrib/whoisd/README @@ -0,0 +1,8 @@ +RTFS + +todo: + ipv6 + more info in responses? + make it compatible with traceroute -A ? + +add any other features you'd like either in here or the source. You know perl, right? diff --git a/contrib/whoisd/whoisd.pl b/contrib/whoisd/whoisd.pl new file mode 100755 index 0000000..8580475 --- /dev/null +++ b/contrib/whoisd/whoisd.pl @@ -0,0 +1,99 @@ +#!/usr/bin/perl +# coded by epoch. +# use inetd or tcpserver or something else. +# waste of time to do manual sockets for something like this. +# this isn't my baby. you can murder it if you want. + +use strict; + +my $RESDB = "/services/resdb/resdb"; + +my $QUERY=; +$QUERY =~ s/\r\n//g; +my $out; +my $title; +my $value; +my @parts; +my $i; + +# ASNs +if($QUERY =~ m/^AS(.+?)$/) { + printf "%% AS section for %s\n", $QUERY; + my $AS=$1; + chdir("$RESDB/db/as"); + if(chdir($AS)) { + foreach(split(/\n/,`grep '' -r .`)) { + $out = $_; + $out =~ s/^\.\///g; + $out =~ m/^(.+?):(.+?)$/; + ($title, $value) = ($1, $2); + printf "%-20s %s\n", $title . ":", $value; + if($title eq "owner") { + $QUERY = $value; + } + } + } else { + printf "AS not found."; + } +} + +# IPv4 addresses +if($QUERY =~ m/^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/) { + printf "%% IP section for %s\n", $QUERY; + chdir("$RESDB/db/ip"); + foreach(split(/\./,$QUERY)) { + chdir(sprintf("%02x",$_)); + } + foreach(split(/\n/,`grep '' -r .`)) { + $out = $_; + $out =~ s/^\.\///g; + ($title, $value) = split(/:/,$out); + printf "%-20s %s\n", $title . ":", $value; + if($title eq "owner") { + $QUERY = $value; + } + } +} + + +# if we get here and there's still a . in the query it is probably a domain. +if($QUERY =~ m/\./) { + printf "%% domain section for %s\n", $QUERY; + @parts=split(/\./,$QUERY); + chdir("$RESDB/db/dom"); + for($i=scalar(@parts)-1;$i>=0;$i--) { + chdir($parts[$i]); + } + foreach(split(/\n/,`grep '' -r .`)) { + $out = $_; + $out =~ s/^\.\///g; + $out =~ m/^(.+?):(.+?)$/; + ($title, $value) = ($1, $2); + printf "%-20s %s\n", $title . ":", $value; + if($title eq "owner") { + $QUERY = $value; + } + } +} + +# default to assuming it is a name. +printf "%% user section for %s\n", $QUERY; + +chdir("$RESDB/db/usr"); +if(chdir($QUERY)) { + foreach(split(/\n/,`grep '' -r .`)) { + $out = $_; + $out =~ s/^\.\///g; + $out =~ m/^(.+?):(.+?)$/; + ($title, $value) = ($1, $2); + printf "%-20s %s\n", $title . ":", $value; + } +} else { + printf "%-20s missing db/usr file.\n", "warning" . ":"; +} +chdir("$RESDB/db/as"); +foreach(split(/\n/,`grep '^$QUERY\$' */owner | cut -d/ -f1`)) { + $out = $_; + $out =~ s/\n//g; + printf "%-20s %s\n", "ASN" . ":", $out; +} diff --git a/db/usr/epoch/email b/db/usr/epoch/email new file mode 100644 index 0000000..bbaa967 --- /dev/null +++ b/db/usr/epoch/email @@ -0,0 +1 @@ +epoch@hacking.allowed.ano diff --git a/db/usr/epoch/irc b/db/usr/epoch/irc new file mode 100644 index 0000000..e6402a5 --- /dev/null +++ b/db/usr/epoch/irc @@ -0,0 +1 @@ +epoch in #default on hacking.allowed.ano -- cgit v1.2.3 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 From bd6625e258cb8f551fa12ce1cc689f6163788235 Mon Sep 17 00:00:00 2001 From: epoch Date: Fri, 23 Aug 2013 18:43:12 +0000 Subject: fixed another bug in whoisd --- contrib/whoisd/whoisd.pl | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/contrib/whoisd/whoisd.pl b/contrib/whoisd/whoisd.pl index 06c2cdf..5b9aa54 100755 --- a/contrib/whoisd/whoisd.pl +++ b/contrib/whoisd/whoisd.pl @@ -41,8 +41,12 @@ if($QUERY =~ m/^AS(.+?)$/) { if($QUERY =~ m/^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/) { printf "%% IP section for %s\n", $QUERY; chdir("$RESDB/db/ip"); - foreach(split(/\./,$QUERY)) { - chdir(sprintf("%02x",$_)); + @parts=split(/\./,$QUERY); + for($i=0;$i