python-nmap的使用

Posted 我爱敲代码

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python-nmap的使用相关的知识,希望对你有一定的参考价值。

import nmap

nm = nmap.PortScanner()
nm.scan(hosts="192.168.1.1/24", arguments="-n -sP -PE")
nm.all_hosts()

import telnetlib
tm = telnetlib.Telnet(host="192.168.1.30", port=22, timeout=4)
tm.read_until("
", timeout=5)

python中的ssh登录模块

import pexpect
 pexpect.run("ls /tmp", withexitstatus=1)

chk = pexpect.spawn("ls -l /tmp/")
chk = pexpect.spawn("ls", [-l, /tmp/])

ssh_k = pexpect.spawn(ssh root@192.168.1.245 -p22)
ssh_k.expect("password:")
ssh_k.expect("[p,P]assword:")
#匹配多种结果
ssh_k.expect([pexpect.TIMEOUT, pexpect.EOF, "password"])

 

以上是关于python-nmap的使用的主要内容,如果未能解决你的问题,请参考以下文章

python-nmap是啥

python-nmap 使用

python-nmap的函数学习

python-nmap

python-nmap使用及案例

python学习-python-nmap实现高效的端口扫描器