python使用paramiko模块实现ssh远程登陆上传文件并执行


Posted in Python onJanuary 27, 2014

程序执行时需要读取两个文件command.txt和ipandpass.txt。格式如下:

command.txt:
ThreadNum:1
port:22
local_dir:hello_mkdir
remote_dir:hello_mkdir
alter_auth:chmod 755 hello_mkdir
exec_program:./hello_mkdir
ipandpass.txt:
ip username password

程序中的队列操作是修改的别的程序,写的确实不错。
该程序亦正亦邪,如果拿去做坏事,我先声明与我无关,我只是分享我的代码罢了。
希望有兴趣的同志们来讨论技术应用。
这其中用到了paramiko,队列,多线程,后续也会写一些这三个方面的东西。欢迎批评指正。
其实这个程序有些地方还有待优化。

#function:upload files through ssh protocal and excute the files 
#lib:paramiko
#MyThread:init a thread to run the function
#ThreadPol:init a thread pool
#uploadAndExecu:upload file and excute
#readConf:read config file
#-*- coding = utf-8 -*-

import Queue
import sys
import threading
import paramiko
import socket
from threading import Thread
import time
class MyThread(Thread):
    def __init__(self, workQueue, timeout=1):
        Thread.__init__(self)
        self.timeout = timeout
        self.setDaemon(False)
        self.workQueue = workQueue
        self.start()
        #print 'i am runnning ...'
    def run(self):
        emptyQueue = 0
        while True:
            try:
                callable, username, password, ipAddress, port,comms = self.workQueue.get(timeout = self.timeout)
                #print 'attacking :',ipAddress,username,password,threading.currentThread().getName(),' time : '
                callable(username,password, ipAddress, port,comms)
            except Queue.Empty:
                print threading.currentThread().getName(),":queue is empty ; sleep 5 seconds\n"
                emptyQueue += 1
                #judge the queue,if it is empty or not.
                time.sleep(5)
                if emptyQueue == 5:
                    print threading.currentThread().getName(),'i  quit,the queue is empty'
                    break
            except Exception, error:
                print error
class ThreadPool:
    def __init__(self, num_of_threads=10):
        self.workQueue = Queue.Queue()
        self.threads = []
        self.__createThreadPool(num_of_threads)
    #create the threads pool
    def __createThreadPool(self, num_of_threads):
        for i in range(num_of_threads):
            thread = MyThread(self.workQueue)
            self.threads.append(thread)
    def wait_for_complete(self):
        #print len(self.threads)
        while len(self.threads):
            thread = self.threads.pop()
            if thread.isAlive():
                thread.join()
    def add_job(self, callable, username, password, ipAddress, Port,comms):
        self.workQueue.put((callable, username, password, ipAddress, Port,comms))
def uploadAndExecu(usernam,password,hostname,port,comm):
    print usernam,password,hostname,port,comm
    try:
        t = paramiko.Transport((hostname,int(port)))
        t.connect(username=username,password=password)
        sftp=paramiko.SFTPClient.from_transport(t)
        sftp.put(comm['local_dir'],comm['remote_dir'])
    except Exception,e:
        print 'upload files failed:',e
        t.close()
    finally:
        t.close()
    
    try:
        ssh = paramiko.SSHClient()
        ssh.load_system_host_keys()
        ssh.set_missing_host_key_policy(paramiko.MissingHostKeyPolicy())
        ssh.connect(hostname, port=int(port), username=username, password=password)
        ssh.exec_command(comm['alter_auth'])
        ssh.exec_command(comm['exec_program'])
    except Exception,e:
        print 'chang file auth or execute the file failed:',e
    ssh.close()
    
def readConf():
    comm={}
    try:
        f = file('command.txt','r')
        for l in f:
            sp = l.split(':')
            comm[sp[0]]=sp[1].strip('\n')
    except Exception,e:
        print 'open file command.txt failed:',e
    f.close()
    return comm
if __name__ == "__main__":
    commandLine = readConf()
    print commandLine 
    #prepare the ips
    wm = ThreadPool(int(commandLine['ThreadNum']))
    try:
        ipFile = file('ipandpass.txt','r')
    except:
        print "[-] ip.txt Open file Failed!"
        sys.exit(1)
    for line in ipFile:
        IpAdd,username,pwd = line.strip('\r\n').split(' ')
        wm.add_job(uploadAndExecu,username,pwd,IpAdd,commandLine['port'],commandLine)
Python 相关文章推荐
Python 专题四 文件基础知识
Mar 20 Python
Python cookbook(数据结构与算法)从字典中提取子集的方法示例
Mar 22 Python
Python 内置函数进制转换的用法(十进制转二进制、八进制、十六进制)
Apr 30 Python
Pandas 数据处理,数据清洗详解
Jul 10 Python
Python使用字典实现的简单记事本功能示例
Aug 15 Python
浅谈keras的深度模型训练过程及结果记录方式
Jan 24 Python
Python requests获取网页常用方法解析
Feb 20 Python
python 使用递归实现打印一个数字的每一位示例
Feb 27 Python
Django接收照片储存文件的实例代码
Mar 07 Python
解决Django中checkbox复选框的传值问题
Mar 31 Python
Python如何执行系统命令
Sep 23 Python
Django数据库(SQlite)基本入门使用教程
Jul 07 Python
python list使用示例 list中找连续的数字
Jan 27 #Python
Python批量修改文件后缀的方法
Jan 26 #Python
使用cx_freeze把python打包exe示例
Jan 24 #Python
Python的函数嵌套的使用方法
Jan 24 #Python
下载安装setuptool和pip linux安装pip    
Jan 24 #Python
python解析文件示例
Jan 23 #Python
python回调函数的使用方法
Jan 23 #Python
You might like
WindowsXP中快速配置Apache+PHP5+Mysql
2008/06/05 PHP
注意:php5.4删除了session_unregister函数
2013/08/05 PHP
php缓冲 output_buffering和ob_start使用介绍
2014/01/30 PHP
php中常量DIRECTORY_SEPARATOR用法深入分析
2014/11/14 PHP
YII Framework教程之异常处理详解
2016/03/14 PHP
php制作基于xml的RSS订阅源功能示例
2017/02/08 PHP
php无限级评论嵌套实现代码
2018/04/18 PHP
JS 创建对象(常见的几种方法)
2008/11/03 Javascript
jquery BS,dialog控件自适应大小
2009/07/06 Javascript
IE8 中使用加速器(Activities)
2010/05/14 Javascript
jQuery的链式调用浅析
2010/12/03 Javascript
javascript动态创建表格及添加数据实例详解
2015/05/13 Javascript
jquery超简单实现手风琴效果的方法
2015/06/05 Javascript
JavaScript获得指定对象大小的方法
2015/07/01 Javascript
C#实现将一个字符转换为整数
2017/12/12 Javascript
vue+webpack 打包文件 404 页面空白的解决方法
2018/02/28 Javascript
关于Angularjs中自定义指令一些有价值的细节和技巧小结
2018/04/22 Javascript
解决vue2.0路由跳转未匹配相应用路由避免出现空白页面的问题
2018/08/24 Javascript
使用localStorage替代cookie做本地存储
2019/09/25 Javascript
python 使用get_argument获取url query参数
2017/04/28 Python
Python基于jieba库进行简单分词及词云功能实现方法
2018/06/16 Python
Python telnet登陆功能实现代码
2020/04/16 Python
python3 中使用urllib问题以及urllib详解
2020/08/03 Python
python time.strptime格式化实例详解
2021/02/03 Python
Bjorn Borg官方网上商店:国际运动时尚品牌
2016/08/27 全球购物
德国传统玻璃制造商:Cristalica
2018/04/23 全球购物
Java的基础面试题附答案
2016/01/10 面试题
HSRP的含义以及如何工作
2014/09/10 面试题
2013年保送生自荐信格式
2013/11/20 职场文书
学校安全防火方案
2014/06/07 职场文书
2014县委书记四风对照检查材料思想汇报
2014/09/21 职场文书
主持人开幕词
2015/01/29 职场文书
2019年教师节活动策划方案
2019/09/09 职场文书
《亲亲我的妈妈》观后感(3篇)
2019/09/26 职场文书
恶魔之树最顶端的三颗果实 震震果实上榜,第一可以制造岩浆
2022/03/18 日漫
排查并解决MySQL生产库内存使用率高的报警
2022/04/11 MySQL