Subversion Repositories vgwhois

Rev

Rev 5 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 daniel-mar 1
#!/usr/bin/php
2
<?php
3
 
4
#
11 daniel-mar 5
#  VGWhoIs (ViaThinkSoft Global WhoIs, a fork of generic Whois / gwhois)
5 daniel-mar 6
#  Subprogram: vi TLD whois
2 daniel-mar 7
#
5 daniel-mar 8
#  (c) 2013 by Daniel Marschall, ViaThinkSoft <info@daniel-marschall.de>
2 daniel-mar 9
#
5 daniel-mar 10
#  License: https://www.gnu.org/licenses/gpl-2.0.html (GPL version 2)
2 daniel-mar 11
#
12
 
13
require_once __DIR__ . '/../../shared/php_includes/common_functions.inc.php';
14
 
15
$domain = isset($argv[1]) ? $argv[1] : '';
16
 
17
$url = 'https://secure.nic.vi/whois-lookup/';
18
 
19
$post = 'submitted=true&domainName='.rawurlencode($domain);
20
 
21
$cont = file_get_contents2($url, $post);
22
 
23
if (preg_match('@<div class="results">(.+)</div>@ismU', $cont, $m)) {
24
	$cont = $m[1];
25
}
26
 
27
// There is a "secret" field named "Name". Why hide it?
28
$cont = str_replace('<!--', '', $cont);
29
$cont = str_replace('-->', '', $cont);
30
 
31
$cont = html_entity_decode(strip_tags($cont));
32
 
33
// Remove whitespaces at the beginning of each line
34
$cont = preg_replace('@([\r\n])[ \t]+(\S)@isU', '\\1\\2', $cont);
35
$cont = trim($cont);
36
 
37
echo "Information about $domain extracted from $url:\n\n";
38
echo $cont."\n";