01: // whois.java
02: // -------------------------------------
03: // (C) by Michael Peter Christen; mc@anomic.de
04: // first published on http://www.anomic.de
05: // Frankfurt, Germany, 2005
06: // last major change: 22.03.2005
07: //
08: // This program is free software; you can redistribute it and/or modify
09: // it under the terms of the GNU General Public License as published by
10: // the Free Software Foundation; either version 2 of the License, or
11: // (at your option) any later version.
12: //
13: // This program is distributed in the hope that it will be useful,
14: // but WITHOUT ANY WARRANTY; without even the implied warranty of
15: // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16: // GNU General Public License for more details.
17: //
18: // You should have received a copy of the GNU General Public License
19: // along with this program; if not, write to the Free Software
20: // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21: //
22: // Using this software in any meaning (reading, learning, copying, compiling,
23: // running) means that you agree that the Author(s) is (are) not responsible
24: // for cost, loss of data or any harm that may be caused directly or indirectly
25: // by usage of this softare or this documentation. The usage of this software
26: // is on your own risk. The installation and usage (starting/running) of this
27: // software may allow other people or application to access your computer and
28: // any attached devices and is highly dependent on the configuration of the
29: // software which must be done by the user of the software; the author(s) is
30: // (are) also not responsible for proper configuration and usage of the
31: // software, even if provoked by documentation provided together with
32: // the software.
33: //
34: // Any changes to this file according to the GPL as documented in the file
35: // gpl.txt aside this file in the shipment you received can be done to the
36: // lines that follows this copyright notice here, but changes must not be
37: // done inside the copyright notive above. A re-distribution must contain
38: // the intact and unchanged copyright notice.
39: // Contributions and changes to the program code must be marked as such.
40:
41: package de.anomic.net;
42:
43: import java.io.BufferedReader;
44: import java.io.IOException;
45: import java.io.InputStreamReader;
46: import java.util.Properties;
47:
48: public class whois {
49:
50: public static Properties Whois(String dom) {
51: try {
52: Process p = Runtime.getRuntime().exec("whois " + dom);
53: BufferedReader br = new BufferedReader(
54: new InputStreamReader(p.getInputStream()));
55: String line, key, value, oldValue;
56: int pos;
57: Properties result = new Properties();
58: while ((line = br.readLine()) != null) {
59: pos = line.indexOf(":");
60: if (pos > 0) {
61: key = line.substring(0, pos).trim().toLowerCase();
62: value = line.substring(pos + 1).trim();
63: //System.out.println(key + ":" + value);
64: oldValue = result.getProperty(key);
65: result.setProperty(key, (oldValue == null) ? value
66: : (oldValue + "; " + value));
67: }
68: }
69: return result;
70: } catch (IOException e) {
71: //e.printStackTrace();
72: return null;
73: }
74: }
75:
76: public static String evaluateWhois(Properties p) {
77: String info1, info2;
78: info1 = p.getProperty("netname");
79: info2 = p.getProperty("descr");
80: if ((info1 != null) && (info2 != null))
81: return info1 + " / " + info2;
82: info1 = p.getProperty("type");
83: info2 = p.getProperty("name");
84: if ((info1 != null) && (info2 != null)
85: && (info1.toLowerCase().startsWith("person")))
86: return "Person: " + info2;
87: return "unknown";
88: }
89: }
|