mirror of
https://github.com/rfc1036/whois.git
synced 2026-05-03 06:51:09 +00:00
Compare commits
1 Commits
6c8572292c
...
449773f301
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
449773f301 |
9
COPYING
9
COPYING
@ -2,7 +2,7 @@
|
|||||||
Version 2, June 1991
|
Version 2, June 1991
|
||||||
|
|
||||||
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
|
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
|
||||||
<https://fsf.org/>
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
Everyone is permitted to copy and distribute verbatim copies
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
of this license document, but changing it is not allowed.
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
@ -304,7 +304,8 @@ the "copyright" line and a pointer to where the full notice is found.
|
|||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License along
|
You should have received a copy of the GNU General Public License along
|
||||||
with this program; if not, see <https://www.gnu.org/licenses/>.
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
|
|
||||||
Also add information on how to contact you by electronic and paper mail.
|
Also add information on how to contact you by electronic and paper mail.
|
||||||
|
|
||||||
@ -328,8 +329,8 @@ necessary. Here is a sample; alter the names:
|
|||||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
||||||
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
||||||
|
|
||||||
<signature of Moe Ghoul>, 1 April 1989
|
<signature of Ty Coon>, 1 April 1989
|
||||||
Moe Ghoul, President of Vice
|
Ty Coon, President of Vice
|
||||||
|
|
||||||
This General Public License does not permit incorporating your program into
|
This General Public License does not permit incorporating your program into
|
||||||
proprietary programs. If your program is a subroutine library, you may
|
proprietary programs. If your program is a subroutine library, you may
|
||||||
|
|||||||
11
debian/changelog
vendored
11
debian/changelog
vendored
@ -1,14 +1,3 @@
|
|||||||
whois (5.6.6) unstable; urgency=medium
|
|
||||||
|
|
||||||
* Added the .mc TLD server.
|
|
||||||
* Updated the .ps TLD server.
|
|
||||||
* Removed the .info, .mobi, .travel and .فلسطين (.xn--ygbi2ammx,
|
|
||||||
Palestinian Territory) TLD servers.
|
|
||||||
* Removed 3 new gTLDs which are no longer active.
|
|
||||||
* mkpasswd: added support the Chinese SM3-based hashing algorithms.
|
|
||||||
|
|
||||||
-- Marco d'Itri <md@linux.it> Mon, 16 Feb 2026 02:46:51 +0100
|
|
||||||
|
|
||||||
whois (5.6.5) unstable; urgency=medium
|
whois (5.6.5) unstable; urgency=medium
|
||||||
|
|
||||||
* Updated the .co TLD server.
|
* Updated the .co TLD server.
|
||||||
|
|||||||
@ -17,8 +17,11 @@ die "Version number not found in $changelog!\n" if not $ver;
|
|||||||
$ver =~ s/ (
|
$ver =~ s/ (
|
||||||
build\d+
|
build\d+
|
||||||
| ubuntu\d+
|
| ubuntu\d+
|
||||||
| ~\S+
|
| ~bpo\d+\+\d+
|
||||||
| \+\S+
|
| ~deb\d+.*
|
||||||
|
| \+b\d+
|
||||||
|
| \+dyson\d+
|
||||||
|
| \+salsaci\+.+
|
||||||
) $//x;
|
) $//x;
|
||||||
|
|
||||||
# The version number must not deviate from this format or the -V option
|
# The version number must not deviate from this format or the -V option
|
||||||
|
|||||||
15
mkpasswd.c
15
mkpasswd.c
@ -12,7 +12,8 @@
|
|||||||
* GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License along
|
* You should have received a copy of the GNU General Public License along
|
||||||
* with this program; if not, see <https://www.gnu.org/licenses/>.
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
*
|
*
|
||||||
* SPDX-License-Identifier: GPL-2.0-or-later
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
*/
|
*/
|
||||||
@ -102,6 +103,9 @@ static const struct crypt_method methods[] = {
|
|||||||
{ "md5", "$1$", 8, 8, 0, NULL },
|
{ "md5", "$1$", 8, 8, 0, NULL },
|
||||||
#if defined XCRYPT_VERSION_NUM
|
#if defined XCRYPT_VERSION_NUM
|
||||||
{ "yescrypt", "$y$", 0, 0, 1, "Yescrypt" },
|
{ "yescrypt", "$y$", 0, 0, 1, "Yescrypt" },
|
||||||
|
#if XCRYPT_VERSION_NUM >= ((4 << 16) | 4)
|
||||||
|
{ "gost-yescrypt", "$gy$", 0, 0, 1, "GOST Yescrypt" },
|
||||||
|
#endif
|
||||||
{ "scrypt", "$7$", 0, 0, 1, "scrypt" },
|
{ "scrypt", "$7$", 0, 0, 1, "scrypt" },
|
||||||
#endif
|
#endif
|
||||||
#ifdef HAVE_BCRYPT_OBSOLETE
|
#ifdef HAVE_BCRYPT_OBSOLETE
|
||||||
@ -110,7 +114,7 @@ static const struct crypt_method methods[] = {
|
|||||||
#endif
|
#endif
|
||||||
#ifdef HAVE_BCRYPT
|
#ifdef HAVE_BCRYPT
|
||||||
{ "bcrypt", "$2b$", 22, 22, 2, "bcrypt" },
|
{ "bcrypt", "$2b$", 22, 22, 2, "bcrypt" },
|
||||||
{ "bcrypt_a", "$2a$", 22, 22, 2, "bcrypt (obsolete $2a$ version)" },
|
{ "bcrypt-a", "$2a$", 22, 22, 2, "bcrypt (obsolete $2a$ version)" },
|
||||||
#endif
|
#endif
|
||||||
#if defined HAVE_SHA_CRYPT
|
#if defined HAVE_SHA_CRYPT
|
||||||
/* http://people.redhat.com/drepper/SHA-crypt.txt */
|
/* http://people.redhat.com/drepper/SHA-crypt.txt */
|
||||||
@ -137,13 +141,6 @@ static const struct crypt_method methods[] = {
|
|||||||
#endif
|
#endif
|
||||||
{ "descrypt", "", 2, 2, 0,
|
{ "descrypt", "", 2, 2, 0,
|
||||||
N_("standard 56 bit DES-based crypt(3)") },
|
N_("standard 56 bit DES-based crypt(3)") },
|
||||||
#if XCRYPT_VERSION_NUM >= ((4 << 16) | 5)
|
|
||||||
{ "sm3crypt", "$sm3$", 0, 0, 1, "ShangMi 3" },
|
|
||||||
{ "sm3_yescrypt", "$sm3y$", 0, 0, 1, "ShangMi 3 Yescrypt" },
|
|
||||||
#endif
|
|
||||||
#if XCRYPT_VERSION_NUM >= ((4 << 16) | 4)
|
|
||||||
{ "gost_yescrypt", "$gy$", 0, 0, 1, "GOST Yescrypt" },
|
|
||||||
#endif
|
|
||||||
#if defined FreeBSD || defined XCRYPT_VERSION_NUM
|
#if defined FreeBSD || defined XCRYPT_VERSION_NUM
|
||||||
{ "nt", "$3$", 0, 0, 0, "NT-Hash" },
|
{ "nt", "$3$", 0, 0, 0, "NT-Hash" },
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@ -282,6 +282,7 @@ download
|
|||||||
drive
|
drive
|
||||||
dtv
|
dtv
|
||||||
dubai
|
dubai
|
||||||
|
dunlop
|
||||||
dupont
|
dupont
|
||||||
durban
|
durban
|
||||||
dvag
|
dvag
|
||||||
@ -398,6 +399,7 @@ godaddy
|
|||||||
gold
|
gold
|
||||||
goldpoint
|
goldpoint
|
||||||
golf
|
golf
|
||||||
|
goo
|
||||||
goodyear
|
goodyear
|
||||||
goog
|
goog
|
||||||
google
|
google
|
||||||
@ -990,6 +992,7 @@ windows
|
|||||||
wine
|
wine
|
||||||
winners
|
winners
|
||||||
wme
|
wme
|
||||||
|
wolterskluwer
|
||||||
woodside
|
woodside
|
||||||
work
|
work
|
||||||
works
|
works
|
||||||
|
|||||||
90
ripe-mail
Normal file
90
ripe-mail
Normal file
@ -0,0 +1,90 @@
|
|||||||
|
From ripe-dbm@ripe.net Mon Jan 27 10:09:59 2003
|
||||||
|
Return-Path: <ripe-dbm@ripe.net>
|
||||||
|
Delivered-To: md@wonderland.linux.it
|
||||||
|
Received: from attila.bofh.it (localhost [127.0.0.1])
|
||||||
|
by wonderland.linux.it (Postfix/Md) with ESMTP id 582BA33CD5
|
||||||
|
for <md@wonderland.linux.it>; Mon, 27 Jan 2003 10:09:59 +0100 (CET)
|
||||||
|
Received: from picard.linux.it (picard.linux.it [::ffff:62.177.1.107])
|
||||||
|
by attila.bofh.it (Postfix) with ESMTP id 46AE15F966
|
||||||
|
for <md@wonderland.linux.it>; Mon, 27 Jan 2003 09:03:25 +0100 (CET)
|
||||||
|
Received: from birch.ripe.net (birch.ripe.net [::ffff:193.0.1.96])
|
||||||
|
by picard.linux.it (Postfix) with ESMTP id 4A76942B2
|
||||||
|
for <md@Linux.IT>; Mon, 27 Jan 2003 09:05:01 +0100 (CET)
|
||||||
|
Received: from x24.ripe.net (x24.ripe.net [193.0.1.24])
|
||||||
|
by birch.ripe.net (8.12.5/8.11.6) with ESMTP id h0R83NAq030231;
|
||||||
|
Mon, 27 Jan 2003 09:03:23 +0100
|
||||||
|
Received: (from ripe-dbm@localhost)
|
||||||
|
by x24.ripe.net (8.12.4/8.12.6) id h0R83M5k002263;
|
||||||
|
Mon, 27 Jan 2003 09:03:22 +0100
|
||||||
|
Message-Id: <200301270803.h0R83M5k002263@x24.ripe.net>
|
||||||
|
From: RIPE Database Administration <ripe-dbm@ripe.net>
|
||||||
|
Cc: Can Bican <can@ripe.net>
|
||||||
|
To: md@Linux.IT
|
||||||
|
FCC: cur
|
||||||
|
Subject: Re: NCC#2003013332 Re: [db-wg] IPv6 Whois update
|
||||||
|
Reply-To: ripe-dbm@ripe.net
|
||||||
|
X-Organization: RIPE Network Coordination Centre
|
||||||
|
X-Phone: +31 20 535 4444
|
||||||
|
X-Fax: +31 20 535 4341
|
||||||
|
X-Mailer: BaT/0.67
|
||||||
|
Sender: RIPE Database Manager <ripe-dbm@ripe.net>
|
||||||
|
Date: Mon, 27 Jan 2003 09:03:21 +0100
|
||||||
|
MIME-Version: 1.0
|
||||||
|
Content-Type: text/plain; charset="us-ascii"
|
||||||
|
Content-Transfer-Encoding: 7bit
|
||||||
|
X-Spam-Status: No, hits=0.6 required=5.0
|
||||||
|
tests=DEAR_SOMEBODY,QUOTED_EMAIL_TEXT,SIGNATURE_SHORT_DENSE,
|
||||||
|
SPAM_PHRASE_05_08
|
||||||
|
version=2.43
|
||||||
|
X-Spam-Level:
|
||||||
|
Status: RO
|
||||||
|
Content-Length: 1239
|
||||||
|
Lines: 46
|
||||||
|
|
||||||
|
|
||||||
|
Dear Marco d'Itri,
|
||||||
|
|
||||||
|
For the month October, 2002:
|
||||||
|
We had 55 milion queries, 4.3 milion done with your client.
|
||||||
|
|
||||||
|
This number is probably not the best indicator as some IPs do a lot of
|
||||||
|
queries so here are also the statistics for different IP addresses using
|
||||||
|
your client:
|
||||||
|
31364 (of 853385) different IP addresses used your client.
|
||||||
|
|
||||||
|
If you have any more questions, please contact <ripe-dbm@ripe.net>.
|
||||||
|
|
||||||
|
Regards,
|
||||||
|
|
||||||
|
Tiago Antao
|
||||||
|
____________________________
|
||||||
|
RIPE Database Administration.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Original message follows:
|
||||||
|
------------------------
|
||||||
|
|
||||||
|
On Thursday 23 January 2003 18:52, Marco d'Itri wrote:
|
||||||
|
> On Jan 23, Can Bican <can@ripe.net> wrote:
|
||||||
|
> >This is a feature we supported, and we'll keep supporting it. It's a
|
||||||
|
> > mistake on our side that we'll change promptly, so please don't change
|
||||||
|
> > the behaviour. We'll make the proxy accept -V switches of these types.
|
||||||
|
>
|
||||||
|
> Thank you for your prompt reply.
|
||||||
|
> BTW, is any statistics about -V arguments available? I wonder how many
|
||||||
|
> queries are made with my client (i.e. the -V argument matches /^Md/).
|
||||||
|
|
||||||
|
I have forwarded your request to ripe-dbm@ripe.net. You can contact that
|
||||||
|
address if you'd like more/less specific requirements about the counts.
|
||||||
|
|
||||||
|
Regards,
|
||||||
|
|
||||||
|
--
|
||||||
|
Can Bican
|
||||||
|
DB Group
|
||||||
|
RIPE NCC
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -15,7 +15,8 @@
|
|||||||
* GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License along
|
* You should have received a copy of the GNU General Public License along
|
||||||
* with this program; if not, see <https://www.gnu.org/licenses/>.
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
*
|
*
|
||||||
* SPDX-License-Identifier: GPL-2.0-or-later
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
*/
|
*/
|
||||||
|
|||||||
@ -59,15 +59,15 @@
|
|||||||
.biz whois.nic.biz
|
.biz whois.nic.biz
|
||||||
.cat whois.nic.cat
|
.cat whois.nic.cat
|
||||||
.coop whois.nic.coop
|
.coop whois.nic.coop
|
||||||
.info NONE
|
.info RECURSIVE whois.nic.info # whois.identitydigital.services
|
||||||
.jobs NONE
|
.jobs NONE
|
||||||
.mobi NONE
|
.mobi RECURSIVE whois.nic.mobi # whois.identitydigital.services
|
||||||
.museum whois.nic.museum
|
.museum whois.nic.museum
|
||||||
.name whois.nic.name
|
.name whois.nic.name
|
||||||
.post whois.nic.post
|
.post whois.nic.post
|
||||||
.pro NONE
|
.pro NONE
|
||||||
.tel whois.nic.tel
|
.tel whois.nic.tel
|
||||||
.travel NONE
|
.travel whois.nic.travel
|
||||||
.xxx whois.nic.xxx
|
.xxx whois.nic.xxx
|
||||||
|
|
||||||
.ac whois.nic.ac
|
.ac whois.nic.ac
|
||||||
@ -214,7 +214,7 @@
|
|||||||
.lv whois.nic.lv
|
.lv whois.nic.lv
|
||||||
.ly whois.nic.ly
|
.ly whois.nic.ly
|
||||||
.ma whois.registre.ma
|
.ma whois.registre.ma
|
||||||
.mc whois.nic.mc
|
.mc NONE # www.nic.mc
|
||||||
.md whois.nic.md
|
.md whois.nic.md
|
||||||
.me RECURSIVE whois.nic.me # whois.identitydigital.services
|
.me RECURSIVE whois.nic.me # whois.identitydigital.services
|
||||||
#.mf
|
#.mf
|
||||||
@ -262,7 +262,7 @@
|
|||||||
.pm whois.nic.pm
|
.pm whois.nic.pm
|
||||||
.pn WEB https://www.nic.pn/
|
.pn WEB https://www.nic.pn/
|
||||||
.pr RECURSIVE whois.nic.pr # whois.identitydigital.services
|
.pr RECURSIVE whois.nic.pr # whois.identitydigital.services
|
||||||
.ps WEB https://www.pnina.ps/
|
.ps whois.pnina.ps
|
||||||
.pt whois.dns.pt
|
.pt whois.dns.pt
|
||||||
.pw whois.nic.pw
|
.pw whois.nic.pw
|
||||||
.py WEB https://www.nic.py/consultdompy.php
|
.py WEB https://www.nic.py/consultdompy.php
|
||||||
@ -427,4 +427,4 @@
|
|||||||
.xn--xkc2dl3a5ee0h whois.nixiregistry.in # India, Tamil
|
.xn--xkc2dl3a5ee0h whois.nixiregistry.in # India, Tamil
|
||||||
.xn--y9a3aq whois.amnic.net # Armenia
|
.xn--y9a3aq whois.amnic.net # Armenia
|
||||||
.xn--yfro4i67o whois.zh.sgnic.sg # Singapore, Chinese
|
.xn--yfro4i67o whois.zh.sgnic.sg # Singapore, Chinese
|
||||||
.xn--ygbi2ammx NONE # Palestinian Territory
|
.xn--ygbi2ammx whois.pnina.ps # Palestinian Territory
|
||||||
|
|||||||
3
utils.c
3
utils.c
@ -16,7 +16,8 @@
|
|||||||
* GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License along
|
* You should have received a copy of the GNU General Public License along
|
||||||
* with this program; if not, see <https://www.gnu.org/licenses/>.
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
*
|
*
|
||||||
* SPDX-License-Identifier: GPL-2.0-or-later
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
*/
|
*/
|
||||||
|
|||||||
8
whois.c
8
whois.c
@ -6,14 +6,6 @@
|
|||||||
* the Free Software Foundation; either version 2 of the License, or
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
* (at your option) any later version.
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License along
|
|
||||||
* with this program; if not, see <https://www.gnu.org/licenses/>.
|
|
||||||
*
|
|
||||||
* SPDX-License-Identifier: GPL-2.0-or-later
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user