0

我的 ISP 有一个计费页面:https ://debet.east.ru/cgi-bin/utm5/aaa5

登录此页面后,我有关于我的帐户的信息。我想自动检查我的余额。

我尝试使用 wget

wget -x -o /data/progs/east/345/345log.txt --load-cookies cook.txt --keep-session-cookies --no-check-certificate --output-document=345.html  https://debet.east.ru/cgi-bin/utm5/aaa5?login=xxx&password=yyy&submit=OK

日志文件

[root@c12000 345]# cat 345log.txt
--2013-09-02 11:16:20--  https://debet.east.ru/cgi-bin/utm5/aaa5?login=user15003
Resolving debet.east.ru... 195.170.55.4
Connecting to debet.east.ru|195.170.55.4|:443... connected.
WARNING: cannot verify debet.east.ru’s certificate, issued by “/C=GB/ST=Greater              
Manchester/L=Salford/O=COMODO CA Limited/CN=COMODO High-Assurance Secure Server CA”
Unable to locally verify the issuer’s authority.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/html]
Saving to: “345.html”

 0K .                                                       143K=0.01s

2013-09-02 11:16:20 (143 KB/s) - “345.html” saved [1691]

但是当我检查下载的页面时,我只看到登录页面。我已经检查了两次 cookie 文件和浏览器中的 URL。

为什么wget不能下载状态页?

4

2 回答 2

1

工作线:

wget -x  --no-check-certificate --output-document=345.html \
--post-data 'login=userxxx&password=yyy' \
https://debet.east.ru/cgi-bin/utm5/aaa5
于 2013-09-02T07:58:15.410 回答
0

在某些 Ubuntu 版本(肯定是 14.04 服务器)上,wget 和 openssl 是使用 /usr/lib/ssl/certs 中的默认 CA 存储而不是 /etc/ssl/certs 中实际存在证书的位置编译的。

通过符号链接修复:

sudo mkdir -p /usr/lib/ssl
sudo ln -s /etc/ssl/certs /usr/lib/ssl/certs
于 2016-01-26T09:31:14.643 回答