import os
import xml.etree.ElementTree as ET
from urllib.parse import urlparse
currDir = os.path.dirname(os.path.realpath(__file__))
rootDir = os.path.abspath(os.path.join(currDir, "../../.."))
batch_target = 'http://223.4.72.2'
batch_target = urlparse(batch_target).hostname
result_dir = os.path.join(rootDir, f"lib/core/infoCollection/result/{batch_target}.xml")
cmd = f"nmap -A -oX {result_dir} {batch_target}"
os.system(cmd)
d = [
{"path": "address", "el": "addr"},
{'path': 'hostnames/hostname', 'el': 'name'},
{"path": "os/osmatch/osclass", "el": "osfamily"},
]
if "./result/223.4.72.2.xml":
tree = ET.parse("./result/223.4.72.2.xml")
root = tree.getroot()
for i in root.iter("host"):
for h in d:
e = i.find(h['path'])
if e is not None:
print(e.get(h["el"]))
else:
print("UNKNowN ", (h["path"]))
#
# # test-2
import json
from bs4 import BeautifulSoup
with open('./result/223.4.72.2.xml', 'r', encoding='utf-8') as file:
read_result = file.read()
soup = BeautifulSoup(read_result, 'lxml')
for host in soup.find_all('host'):
if host.status['state'] == 'up':
ip = host.address['addr']
ports = []
for port in host.ports.find_all('port'):
ports.append({
'protocol': port['protocol'],
'portid': port['portid'],
'state': port.state['state'],
'service': port.service['name']
})
print(json.dumps(ports, indent=4))
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。