Python Shell脚本。 Chain Unix OpenSSL命令

时间:2017-06-08 19:13:45

标签: python shell unix subprocess pyopenssl

我正在尝试编写一个简单的Python shell脚本,该脚本将用户输入服务器名称和端口号,并将其路由到显示SSL证书过期信息的OpenSSL命令。

我正在使用子进程模块,但是我不清楚用用户输入的信息链接命令的正确方法。

完整命令是:

echo | openssl s_client -servername www.google.com -connect www.google.com:443 2>/dev/null | openssl x509 -noout -dates

输出命令(我希望脚本输出):

notBefore=May 31 16:57:23 2017 GMT
notAfter=Aug 23 16:32:00 2017 GMT

我的代码:

#!/usr/bin/env python
import subprocess 

server_name = raw_input("Enter server name: ")
port_number = raw_input("Enter port number: ")

def display_cert_info(servername, portnum):
    pn = str(server_name + ":" + port_number)
    cmd = ["echo", "|", "openssl", "s_client", "-servername", str(servername), "-connect", pn, "2>/dev/null", "|", "openssl", "x509", "-noout", "-dates"]

    info = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
    output = info.communicate()[0]
    print(output)

display_cert_info(server_name, port_number)

感谢任何帮助!

2 个答案:

答案 0 :(得分:0)

与shell不同,标准输入,标准输出和标准错误都由Popenstdinstdoutstderr参数处理。因此,您可以丢弃前两个命令元素(echo |)。然后,您将要使用管道中的最后一个命令运行单独的进程,将第一个命令的输出转换为stdin。一般来说,当用另一种语言运行时,你不会使用shell管道,而是使用语言自己的管道(或流媒体)机制。

答案 1 :(得分:0)

@Han我知道我想晚些时候来派对来帮助您有点太晚了,对此感到抱歉,但这是其他寻求该解决方案的人的。我不得不将Popen()和check_output()函数串在一起,像这样:

#!/usr/bin/python3
from subprocess import Popen, PIPE, check_output
from os import open, O_WRONLY

servers = [
    "server1.domain.com",
    "server2.domain.com",
    "server3.domain.com"
    ]

for s in servers:
    print("querying {}".format(s))
    dn = open("/dev/null", O_WRONLY)
    q = Popen(["/usr/bin/openssl", "s_client", "-servername", s, "-connect","{}:443".format(s)], stdout=PIPE, stdin=PIPE, stderr=dn, shell=False)
    y = check_output(["/usr/bin/openssl", "x509", "-noout", "-dates"], stdin=q.stdout)
    print(y.decode("utf-8"))

这使我可以快速,轻松地审核我添加到列表中的所有服务器。我的下一个迭代是在输出中添加监视/警报,而再也不会为过期的证书感到惊讶。