通过特定端口通过 SSH 进行 WHOIS

通过特定端口通过 SSH 进行 WHOIS

是否可以通过我的本地计算机通过 43 以外的端口向远程机器发出 WHOIS 请求以执行?理想情况下,我使用 Jsch,并且希望能够循环这些请求。我查看了 /etc/services,但没有学到太多东西。每当我指定 43 以外的端口时,whois 请求都会挂起 (whois -p 4999 74.125.224.72)。

我了解 RIR 及其各种限制,并且我意识到我可以在 DomainTools 等地方付款。但说实话,那不会那么有趣,不是吗?

答案1

$ proxychains whois example.org
ProxyChains-3.1 (http://proxychains.sf.net)
|R-chain|-<>-127.0.0.1:1080-<><>-199.15.84.131:43-<><>-OK
Access to .ORG WHOIS information is provided to assist persons in 
determining the contents of a domain name registration record in the 
....
...
....
DS Key Tag 2:31589
Algorithm 2:8
Digest Type 2:2
Digest 2:3fdc4c11fa3ad3535ea8c1ce3eaf7bfa5ca9ae8a834d98fee10085cfaeb625aa
DS Maximum Signature Life 2:1814400 seconds

proxychains /etc/proxychains.conf 的配置包含以下内容:

socks5          127.0.0.1       1080

Socks5 设置:

$ ssh -D 1080 user@server

相关内容