我开始学习编程,我正在尝试编写一个简单的解析器,但我很困惑。如果有人帮助我,我会很高兴。
文件.txt
# Masscan 1.0.3 scan initiated Sun Dec 23 23:00:31 2018
# Ports scanned: TCP(1;80-80) UDP(0;) SCTP(0;) PROTOCOLS(0;)
Host: 192.168.1.1 () Ports: 80/open/tcp////
Host: 192.168.1.1 () Ports: 801/open/tcp////
Host: 192.168.1.2 () Ports: 801/open/tcp////
Host: 192.168.1.2 () Ports: 445/open/tcp////
Host: 192.168.1.3 () Ports: 80/open/tcp////
Host: 192.168.1.3 () Ports: 8080/open/tcp////
Host: 192.168.1.3 () Ports: 21/open/tcp////
# Masscan done at Sun Dec 23 23:00:45 2018
我想以一种格式接收数据:
192.168.1.1 80, 801
192.168.1.2 801, 445
192.168.1.3 80, 8080, 21
脚本文件
#!/usr/bin/env python
import sys, re, os
ports = []
ip = None
with open('mres.txt','r') as f:
for elem in f.readlines():
if not elem.startswith('#'):
if ip != None:
if elem.split(' ')[1] == ip:
ports.append(elem.split(' ')[3].split('/')[0])
continue
else:
print(ip + str(ports))
ports=[]
else:
#print('Unic: '+str(ip) + ' port: '+ str(elem.split(' ')[3].split('/')[0]))
ip = elem.split(' ')[1]
ports.append(elem.split(' ')[3].split('/')[0])
白衣染霜花
哆啦的时光机
相关分类