python 扫描端口是否打开
程序员文章站
2022-10-07 20:34:42
#python 扫描端口是否打开import reimport timewhile True: try: for line in os.popen('netstat -nat').read().split('\n'): # print(line) port_match=re.search('\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\.(\d{1,6})',line) if por...
#python 扫描端口是否打开
import os
import re
import time
while True:
try:
for line in os.popen('netstat -nat').read().split('\n'):
# print(line)
port_match=re.search('\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\.(\d{1,6})',line)
if port_match:
# print(port_match.group(1))
if port_match.group(1)=='4244':
print('the port 4244 is opened')
break
else:
print('wait for anther 3 sec for another round checking')
time.sleep(3)
continue
except KeyboardInterrupt:
print('received ctl+c')
print('stop the program ')
break
注意点:
1.os.popen 执行lunix命令
2.正则表达式匹配re.search 返回值为对象,提取可用.group() 。group(0)/group()表示匹配整体,group(1)表示匹配第一个()内的内容。
3.time库,可以用来设置下一步等待时间。
4.if下的break会跳出循环,忽略else的内容,直接执行后面的命令(在没有 KeyboardInterrupt 的情况下执行break)。
5.用try和except执行异常操作。
本文地址:https://blog.csdn.net/weixin_43693277/article/details/107315989
上一篇: python面向对象(一)