码迷,mamicode.com
首页 > 编程语言 > 详细

python-nmap的使用

时间:2020-04-14 10:41:56      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:style   pexpect   root   pass   class   argument   ls -l   scanner   scan   

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("\n", 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的使用

标签:style   pexpect   root   pass   class   argument   ls -l   scanner   scan   

原文地址:https://www.cnblogs.com/majianyu/p/12696148.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!