!本文并不是说某软件存在安全问题,而是探讨其在生产环境中因用户自身配置不当和部署不规范可能引发的安全风险。合理配置下,该软件仍是一款高效可靠的工具!
近日,团队安全研究人员在多起渗透测试过程中,发现部分服务器开放了某程序的HTTP服务端口,用户未做任何访问控制。通过这一“后门”,攻击者可无需身份认证直接浏览并下载服务器中的任意文件,导致敏感文档、配置文件、数据备份等核心资产面临被窃取风险。这一问题的爆出,再次将“弱配置”、“未授权访问”等老问题推上风口浪尖。
该软件是一款高效的工具,因其快速索引能力被广泛用于运维人员。然而,它自带的HTTP服务功能在使用者不选择访问认证策略下,一旦被公开暴露到互联网,即可造成严重数据泄露。
在我们近期的渗透测试案例中,通过各类搜索引擎,即可定位多个暴露该服务的IP地址,通过浏览器直接访问,便可查阅硬盘目录结构并下载文件,其中不乏生产环境配置、用户信息泄露、数据备份文件等敏感资产。
💣 漏洞名称:某程序因用户自身配置不当导致任意文件读取漏洞
🕒 影响范围:所有未严格配置权限的云服务器
🔍 OWASP Top类别:访问控制不当、安全配置错误、认证及时缺陷、缺乏安全日志与监控
📉 主要原因:用户配置不当,未设置访问控制策略,导致可通过浏览器直接访问服务器所有资源
漏洞本质:该程序因用户自图方便,未开启用户登录认证,甚至使用默认端口将资产信息暴露至互联网。其该软件本身有访问控制策略和日志记录功能。主要造成漏洞的原因在于用户本身。
访问方式:寻找资产信息,选择对应资产直接访问即可。
特殊利用:可根据暴露的信息,直接查阅系统敏感文件、数据库备份信息以及客户单位工作资料。
以下复现过程均在本地环境搭建,未公开至互联网平台。
安装程序,开启http服务->浏览器访问->敏感信息下载查阅。
本地安装程序,在设置中开启http服务。
![配置不当导致某程序成为服务器“后门”?你的数据可能已暴露 配置不当导致某程序成为服务器后门?你的数据可能已暴露]()
查阅本机IP地址。本机IP地址为:192.168.241.163
通过浏览器访问该地址:http://192.168.241.163:10001,即可直接看到服务器磁盘目录信息。
可以看到C盘的所有信息均可查阅、下载。
在用户桌面发现设备字典信息和默认口令清单,可直接下载查阅。
title=="****************"
某服务器开启该程序HTTP服务后,泄露服务器数据备份信息。
某服务器开启该程序HTTP服务后,泄露相关图纸信息。
某服务器开启该程序HTTP服务后,泄露4K、蓝光电影资源。
http://目标IP:端口/?search=windowswin.ini&offset=0
检查该程序进程监听端口,可看到其PID是xxxx、xxxx。
经过再次查阅,其端口为10001。
tasklist | findstr "***********.exe"
netstat -ano | findstr "xxxx"
netstat -ano | findstr "xxxx"
权限最小化,将服务运行账户改为普通用户。(非SYSTEM/Administrator)
更改该程序的http服务默认端口,设置为不常用端口号。
设置访问用户名和密码,开启http服务器日志功能。
设置仅允许服务器访问的磁盘或文件夹。
开启访问设置后,在浏览器访问时,会进行身份验证。
服务器日志文件会实时记录用户操作情况。
在本次渗透测试过程中,暴露的资源涵盖生产系统的核心配置文件、影视与图像资源、数据库备份文件及用户敏感身份信息等内容,反映出系统未配置访问认证机制所带来的严重安全隐患。
未启用身份认证策略的Web目录等同于将文件暴露在互联网上,任何拥有目标地址的用户均可在无授权、无日志的的前提下浏览、下载、批量爬取文件。这些访问方式极易被黑客、恶意爬虫或数据中介利用,形成持续性的信息出逃渠道。
泄露的配置文件中往往包含数据库连接信息、账号密码、内部路径等核心参数,一旦被利用,将可能被用作进一步横向移动或权限提升的跳板,导致业务系统停摆、服务中断,甚至造成核心系统控制权被劫持。
依据《个人信息保护法》、《数据安全法》、《网络安全法》等相关法规,若涉及用户隐私数据或企业敏感信息的非法授权泄露,企业将面临罚款、行政约谈、整改令等多重法律责任。同时也可能触发第三方客户或监管机构的信任危机。
攻击者一旦发现开放目录,可能通过上传恶意脚本或批量篡改文件内容,将系统作为跳板节点发起勒索攻击、挖矿操作或恶意传播。一些黑产团伙甚至会将这些资源伪装为镜像站或种子服务器,加剧其扩散危害。
在当今“云-端-协作”背景下,企业内部资源已广泛关联至多家上下游合作单位,一旦某一节点信息泄露,不仅自身风险增大,还将影响合作方对企业安全能力的信任,可能导致合同终止、项目流产或评级下降等连锁反应。
该程序因用户自身设置问题,造成漏洞。该漏洞案例涉及的风险,直接映射到OWASP Top 10中多个高危项,具体包括:
A01:Broken Access Control(访问控制不当):系统未进行身份认证与授权,直接裸露数据资源;
A05:Security Misconfiguration(安全配置错误):默认配置上线、缺乏限制与审计;
A07:Identification and Authentication Failures(认证机制缺陷):无登录机制;
A09:Security Logging and Monitoring Failures(缺乏安全日志与监控):无访问日志审计,无法及时发现非法行为。
这也说明了:传统工具在新场景下被滥用或误用,极易衍生新型漏洞,成为企业安全防线中的“盲区”。
此类事件不仅揭示了技术漏洞,更反映出数据安全治理体系的不足。为避免类似安全隐患,应从以下角度加强防护:
资产管理:全面梳理业务系统、服务端口及其功能暴露情况;
配置审计:建立默认配置检查机制,强化上线前安全审计流程;
访问控制:无授权服务一律关闭,严格执行最小权限原则;
日志与告警:部署主机入侵检测系统(HIDS)、日志集中分析;
员工培训:提高运维与开发人员的安全意识,避免“误操作即漏洞”。
本案例背后,凸显出网络安全治理的一大趋势——从“防外”走向“控内”与“治态”。在云计算、DevOps、混合办公模式成为常态背景下,安全能力也应从传统边界向“持续检测、快速响应、自主防御”升级。值得关注的几个新方向包括:
零信任架构(Zero Trust):不再依赖边界防护,每次访问均需认证与授权;
安全编排与自动响应(SOAR):提升发现与处置效率;
数据安全治理体系建设:分类分级管理、数据使用审计、脱敏处理成为刚需;
国密算法及合规适配:适应国产化替代趋势下的加密合规要求。
该程序无任何恶意,是一个安全、可靠、稳定、高效的工具。其开发过程中已经设定访问认证策略,而部分用户为了方便迅速访问,未设置用户登录策略,导致配置不当。其“便捷”便可能变成“入侵”。网络安全的本质,从来不是拒绝技术,而是敬畏技术。每一个配置项、每一个开关、每一次上线,都是安全边界的一部分。
本公众号“暗魂攻防实验室”致力于分享网络安全相关知识及资讯,所有内容仅供学习和交流使用,不得用于任何非法用途。由于传播、利用本公众号“暗魂攻防实验室”所提供的技术和信息而造成的任何直接或者间接的后果及损失,均由使用者本人负责,公众号及作者不为此承担任何责任!!!
以下为本公众号声明内容,请知悉并遵守:
1.关于信息的准确性
本公众号所发布的信息均来源于公开渠道或作者整理,仅供参考,不保证内容的绝对准确性、完整性和时效性。使用者在依赖相关内容前,应独立核实信息的真实性和适用性。
2.法律与合规性
使用者应严格遵守国家相关法律法规,确保所有操作仅用于合法用途。本公众号明确禁止任何利用内容进行非法活动的行为,由此产生的后果由使用者自行承担,本公众号及作者不承担任何责任。
3.版权声明
本公众号部分内容如引用了他人作品或资源,均已标注来源或作者。如有侵权,请及时联系我们,我们将在核实后立即删除并致以歉意。
4.合法用途限制
本公众号内容仅供参考,任何利用本公众号内容从事违法行为的后果均由使用者自行承担,本公众号及作者对此不承担任何责任。
5.风险告知
因使用或传播本公众号内容导致的直接或间接后果(如系统损坏、数据丢失、法律责任等),均由使用者自行承担。本公众号及作者对此不承担任何责任。
<section class="_135editor">
<section style="margin: 10px auto;" class="">
<section style="border-radius: 5px;border: 1px solid #b1d3ef;background-color: #f5faff;padding: 30px 10px;box-sizing:border-box;" class="">
<section class="box-edit" style="margin-bottom: 15px;">
<section style="text-align: left;" class="">
<section style="display: inline-block;">
<section style="font-size: 14px;color: #174dd6;text-align: center;padding-right: 35px;box-sizing:border-box;" class="">
<strong>3.3.1 宏触发条件</strong>
<section style="width: 100%;height: 8px;background-color: #b1d3ef;margin-top: -8px;max-width:100% !important;box-sizing:border-box;" class=""></section>
<section class="135brush" style="text-align: justify;line-height:1.75em;letter-spacing: 1.5px;font-size:14px;color:#333333;background-color: transparent;padding-top: 5px;box-sizing:border-box;">
<p style="text-indent:2.21428em">
这是一个Word宏,当文档被打开时(Document_Open事件)自动执行。
<section class="lake-content" typography="classic" style="height: 0px;"></section>
<section class="box-edit" style="margin-bottom: 15px;">
<section style="text-align: left;" class="">
<section style="display: inline-block;">
<section style="font-size: 14px;color: #174dd6;text-align: center;padding-right: 35px;box-sizing:border-box;" class="">
<strong class="135brush" >3.3.2 错误处理</strong>
<section style="width: 100%;height: 8px;background-color: #b1d3ef;margin-top: -8px;max-width:100% !important;box-sizing:border-box;" class=""></section>
<section class="135brush" style="text-align: justify;line-height:1.75em;letter-spacing: 1.5px;font-size:14px;color:#333333;background-color: transparent;padding-top: 5px;box-sizing:border-box;">
<span style="background-color: transparent; caret-color: red; letter-spacing: 1.5px; font-size: 14px; line-height: 1.71em;">【代码】</span>
<p style="text-indent: 2.21428em; font-size: 14px;">
<span style="background-color: transparent; caret-color: red; letter-spacing: 1.5px; font-size: 14px; line-height: 1.71em;">忽略代码执行过程中可能出现的任何错误,确保病毒代码能够继续运行而不断被中断。</span>
<section class="lake-content" typography="classic" style="height: 0px;"></section>
<section class="lake-content" typography="classic" style="height: 0px;"></section>
<section style="text-align: left;" class="">
<section style="display: inline-block;">
<section style="font-size: 14px;color: #174dd6;text-align: center;padding-right: 35px;box-sizing:border-box;" class="">
<strong class="135brush" >3.3.3 禁用安全设置</strong>
<section style="width: 100%;height: 8px;background-color: #b1d3ef;margin-top: -8px;max-width:100% !important;box-sizing:border-box;" class=""></section>
<section class="135brush" style="text-align: justify;line-height:1.75em;letter-spacing: 1.5px;font-size:14px;color:#333333;background-color: transparent;padding-top: 5px;box-sizing:border-box;">
<span style="background-color: transparent; caret-color: red; letter-spacing: 1.5px; font-size: 14px; line-height: 1.71em;">【代码】</span>
<p style="text-indent:2.21428em">
<span style="background-color: transparent; caret-color: red;">Application.DisplayStatusBar=False:隐藏状态栏,避免用户看到异常行为。</span>
<p style="text-indent:2.21428em">
<span style="background-color: transparent; caret-color: red;">Options.VirusProtection=False:禁用Word的病毒保护功能,防止宏病毒被检测到。</span>
<p style="text-indent:2.21428em">
Options.SaveNormalPrompt=False:禁用保存时的提示,使用户在不知情的情况下保存被感染的文档。
<section class="lake-content" typography="classic" style="height: 0px;"></section>
<section class="lake-content" typography="classic" style="height: 0px;"></section>
<section class="box-edit" style="margin-bottom: 15px;">
<section style="text-align: left;" class="">
<section style="display: inline-block;">
<section style="font-size: 14px;color: #174dd6;text-align: center;padding-right: 35px;box-sizing:border-box;" class="">
<strong class="135brush" >3.3.4 复制病毒代码</strong>
<section style="width: 100%;height: 8px;background-color: #b1d3ef;margin-top: -8px;max-width:100% !important;box-sizing:border-box;" class=""></section>
<section class="135brush" style="text-align: justify;line-height:1.75em;letter-spacing: 1.5px;font-size:14px;color:#333333;background-color: transparent;padding-top: 5px;box-sizing:border-box;">
<span style="background-color: transparent; caret-color: red; letter-spacing: 1.5px; font-size: 14px; line-height: 1.71em;">【代码】</span>
<p style="text-indent:2.21428em">
从当前文档的宏模块中提取前20行代码(即病毒代码本身),并将其存储在变量MyCode中。
<section class="lake-content" typography="classic" style="height: 0px;"></section>
<section class="lake-content" typography="classic" style="height: 0px;"></section>
<section style="text-align: left;" class="">
<section style="display: inline-block;">
<section style="font-size: 14px;color: #174dd6;text-align: center;padding-right: 35px;box-sizing:border-box;" class="">
<strong class="135brush" >3.3.5 选择感染目标</strong>
<section style="width: 100%;height: 8px;background-color: #b1d3ef;margin-top: -8px;max-width:100% !important;box-sizing:border-box;" class=""></section>
<section class="135brush" style="text-align: justify;line-height:1.75em;letter-spacing: 1.5px;font-size:14px;color:#333333;background-color: transparent;padding-top: 5px;box-sizing:border-box;">
<span style="background-color: transparent; caret-color: red; letter-spacing: 1.5px; font-size: 14px; line-height: 1.71em;">【代码】</span>
<p style="text-indent:2.21428em">
NormalTemplate:Word的全局模版(Normal.dot),所有新创建的文档都会继承它的内容。<br/>
<p style="text-indent:2.21428em">
<p style="text-indent:2.21428em">
如果当前文档是全局模版(NormalTemplate),则病毒会尝试感染当前打开的文档(ActiveDocument);否则,它会尝试感染全局模版。
<section class="lake-content" typography="classic" style="height: 0px;"></section>
<section class="lake-content" typography="classic" style="height: 0px;"></section>
<section style="text-align: left;" class="">
<section style="display: inline-block;">
<section style="font-size: 14px;color: #174dd6;text-align: center;padding-right: 35px;box-sizing:border-box;" class="">
<strong class="135brush" >3.3.6 感染目标</strong>
<section style="width: 100%;height: 8px;background-color: #b1d3ef;margin-top: -8px;max-width:100% !important;box-sizing:border-box;" class=""></section>
<section class="135brush" style="text-align: justify;line-height:1.75em;letter-spacing: 1.5px;font-size:14px;color:#333333;background-color: transparent;padding-top: 5px;box-sizing:border-box;">
<span style="background-color: transparent; caret-color: red; letter-spacing: 1.5px; font-size: 14px; line-height: 1.71em;">【代码】</span>
<p style="text-indent:2.21428em">
.Lines(1, 1) = "APMP":检查目标文档或模板的第一行是否为 "APMP"。
<p style="text-indent:2.21428em">
.Lines(1, 2) <> "KILL":检查第二行是否为 "KILL"。
<p style="text-indent:2.21428em">
如果目标文档或模板未被感染(即第一行是 "APMP" 且第二行不是 "KILL"),则执行以下操作:
<p style="text-indent:2.21428em">
.DeleteLines 1, .CountOfLines:删除目标文档或模板中的所有现有代码。
<p style="text-indent:2.21428em">
.InsertLines 1, MyCode:将病毒代码插入目标文档或模板中。
<p style="text-indent: 2.21428em;">
ActiveDocument.SaveAs ActiveDocument.FullName:如果当前文档是全局模板,则保存当前打开的文档,以确保病毒代码被传播。
<section class="lake-content" typography="classic" style="height: 0px;"></section>
<section class="lake-content" typography="classic" style="height: 0px;"></section>
<section class="_135editor" >
<section style="margin: 10px auto; display: flex; justify-content: center;" class="">
<section style="display: flex;align-items: center;" class="">
<section style="flex-shrink: 0;" class="">
<section style="width: 9px;height: 9px;border: 1px solid #ffd895;background-color: #ffffff;border-radius: 100%;margin-bottom: -8px;margin-left: 3px;box-sizing:border-box;transform: rotateZ(1deg);-webkit-transform: rotateZ(1deg);-moz-transform: rotateZ(1deg);-o-transform: rotateZ(1deg);" class=""></section>
<section class="assistant" style="font-size: 16px;letter-spacing: 1.5px;color: #ffffff;width: 38px;height: 38px;border-radius: 100%;background-color: #ffd895;display: flex;justify-content: center;align-items: center;box-sizing:border-box;">
<strong>0</strong><strong class="autonum" title="" >4</strong>
<section style="margin-left: 8px;">
<section style="display: flex;justify-content: space-between;">
<section style="width: 20px;height: 1px;border-bottom: 1px solid #6bb5df;box-sizing:border-box;"></section>
<section style="width: 20px;height: 1px;border-bottom: 1px solid #6bb5df;box-sizing:border-box;"></section>
<section style="border-left: 1px solid #6bb5df;border-right: 1px solid #6bb5df;padding: 4px 12px;box-sizing:border-box;" class="">
<section style="font-size: 16px;color: #258bc3;text-align: center;" class="">
<section style="display: flex;justify-content: space-between;" class="">
<section style="width: 20px;height: 1px;border-top: 1px solid #6bb5df;box-sizing:border-box;" class=""></section>
<section style="width: 20px;height: 1px;border-top: 1px solid #6bb5df;box-sizing:border-box;">
<section class="_135editor" >
<section style="margin: 10px auto;" class="">
<section style="border: 1px solid #a3b4e6;border-radius: 6px;display: flex;justify-content: space-between;box-sizing:border-box;" class="">
<section style="display: flex;padding: 0 6px;align-items: center;box-sizing:border-box;" class="">
<section style="flex-shrink: 0;">
<section style="font-size: 16px;letter-spacing: 1.5px;color: #ffe7a5;" class="">
<section style="font-size: 16px;color: #547bf4;text-align: left;" class="">
<strong class="135brush" >奇安信沙箱检测</strong>
<section style="flex-shrink: 0;margin: -10px 0 0 -10px;transform: translateX(-15px);-webkit-transform: translateX(-15px);-moz-transform: translateX(-15px);-o-transform: translateX(-15px);" class="">
<section class="assistant" style="width: 35px; height: 0px;box-sizing:border-box;"></section>
<section style="background-color: #f6faff;border-radius: 10px;padding: 15px 15px;box-sizing:border-box;" class="">
<section class="135brush _135editor" style="text-align: justify;line-height:1.75em;letter-spacing: 1.5px;font-size:14px;color:#333333;background-color: transparent;" >
<p style="text-indent:2.21428em">
使用奇安信云沙箱进行检测,分别使用Windows10环境(Microsoft Office)和Windows7环境(WPS)进行检测分析,均发现该文件为恶意文件。Windows7环境恶意评分为10,Windows10环境恶意评分为9。经过检测,未恶意进程和病毒文件释放。
<section class="135brush _135editor" style="text-align: justify;line-height:1.75em;letter-spacing: 1.5px;font-size:14px;color:#333333;background-color: transparent;" >
<p style="text-indent:2.21428em">
<section class="135brush _135editor" style="text-align: justify;line-height:1.75em;letter-spacing: 1.5px;font-size:14px;color:#333333;background-color: transparent;" >
<p style="text-indent:2.21428em">
<section class="135brush _135editor" style="text-align: justify;line-height:1.75em;letter-spacing: 1.5px;font-size:14px;color:#333333;background-color: transparent;" >
<p style="text-indent:2.21428em">
经过Windows7和Windows10环境检测,共检测到以下特征行为:Thus、<span style="background-color: transparent; caret-color: red;">Chinese Simplified、Macros_AutoExec、Macros_Modify。以下是对这些检测结果的解释:</span>
<section class="_135editor">
<section style="margin: 10px auto;" class="">
<section style="border-radius: 5px;border: 1px solid #b1d3ef;background-color: #f5faff;padding: 30px 10px;box-sizing:border-box;" class="">
<section class="box-edit" style="margin-bottom: 15px;">
<section style="text-align: left;" class="">
<section style="display: inline-block;">
<section style="font-size: 14px;color: #174dd6;text-align: center;padding-right: 35px;box-sizing:border-box;" class="">
<strong>4.1.1 检测项Thus</strong>
<section style="width: 100%;height: 8px;background-color: #b1d3ef;margin-top: -8px;max-width:100% !important;box-sizing:border-box;" class=""></section>
<section class="135brush" style="text-align: justify;line-height:1.75em;letter-spacing: 1.5px;font-size:14px;color:#333333;background-color: transparent;padding-top: 5px;box-sizing:border-box;">
<p style="text-indent:2.21428em">
<span style="background-color: transparent; caret-color: red;">代码中If .Lines(1, 1) = "APMP" & .Lines(1, 2) <> "KILL" Then的逻辑可能触发此标记。</span>
<p style="text-indent:2.21428em">
Thus可能指代码中条件判断后的恶意操作(如“因此删除并插入病毒代码”),沙箱检测到此类逻辑与已知宏病毒模式匹配。
<section class="lake-content" typography="classic" style="height: 0px;"></section>
<section class="box-edit" style="margin-bottom: 15px;">
<section style="text-align: left;" class="">
<section style="display: inline-block;">
<section style="font-size: 14px;color: #174dd6;text-align: center;padding-right: 35px;box-sizing:border-box;" class="">
<strong class="135brush" >4.1.2 检测项Chinese Simplified</strong>
<section style="width: 100%;height: 8px;background-color: #b1d3ef;margin-top: -8px;max-width:100% !important;box-sizing:border-box;" class=""></section>
<section class="135brush" style="text-align: justify;line-height:1.75em;letter-spacing: 1.5px;font-size:14px;color:#333333;background-color: transparent;padding-top: 5px;box-sizing:border-box;">
<p style="text-indent:2.21428em">
文档内容或代码注释中可能包含简体中文字符,如:文档正文中的中文文本(非代码部分),病毒可能针对中文用户设计(例如通过中文文件名或诱饵内容诱导用户启用宏)。
<p style="text-indent:2.21428em">
部分宏病毒会检查系统语言环境是否为中文,以决定是否执行攻击。
<section class="lake-content" typography="classic" style="height: 0px;"></section>
<section class="lake-content" typography="classic" style="height: 0px;"></section>
<section style="text-align: left;" class="">
<section style="display: inline-block;">
<section style="font-size: 14px;color: #174dd6;text-align: center;padding-right: 35px;box-sizing:border-box;" class="">
<strong class="135brush" >4.1.3 检测项Macro_AutoExec</strong>
<section style="width: 100%;height: 8px;background-color: #b1d3ef;margin-top: -8px;max-width:100% !important;box-sizing:border-box;" class=""></section>
<section class="135brush" style="text-align: justify;line-height:1.75em;letter-spacing: 1.5px;font-size:14px;color:#333333;background-color: transparent;padding-top: 5px;box-sizing:border-box;">
<p style="text-indent:2.21428em">
代码中的Private Sub Document_Open()是典型的自动执行宏。
<p style="text-indent:2.21428em">
当用户打开文档时,此宏会自动触发,尝试感染其他文档或模版(如NormalTemplate和ActiveDocument)。
<section class="lake-content" typography="classic" style="height: 0px;"></section>
<section class="lake-content" typography="classic" style="height: 0px;"></section>
<section class="box-edit" style="margin-bottom: 15px;">
<section style="text-align: left;" class="">
<section style="display: inline-block;">
<section style="font-size: 14px;color: #174dd6;text-align: center;padding-right: 35px;box-sizing:border-box;" class="">
<strong class="135brush" >4.1.4 检测项Macros_Modify</strong>
<section style="width: 100%;height: 8px;background-color: #b1d3ef;margin-top: -8px;max-width:100% !important;box-sizing:border-box;" class=""></section>
<section class="135brush" style="text-align: justify;line-height:1.75em;letter-spacing: 1.5px;font-size:14px;color:#333333;background-color: transparent;padding-top: 5px;box-sizing:border-box;">
<p style="text-indent:2.21428em">
<p style="text-indent:2.21428em">
Host.DeleteLines 1,.CountOfLines:删除目标文档或模版中的所有现有代码。
<p style="text-indent:2.21428em">
Host.InsertLines 1,MyCode:将病毒代码插入目标文档。
<p style="text-indent:2.21428em">
ActiveDocument.SaveAs:保存被感染的文档,确保病毒传播。
<p style="text-indent:2.21428em">
这些操作会直接修改文档的宏模块,符合Macros_Modify的检测逻辑。
<section class="lake-content" typography="classic" style="height: 0px;"></section>
<section class="lake-content" typography="classic" style="height: 0px;"></section>
<section class="_135editor" style="height: 0px;"></section>
<section class="_135editor" style="height: 0px;"></section>
<section class="_135editor" >
<section style="margin: 10px auto;" class="">
<section style="border: 1px solid #a3b4e6;border-radius: 6px;display: flex;justify-content: space-between;box-sizing:border-box;" class="">
<section style="display: flex;padding: 0 6px;align-items: center;box-sizing:border-box;" class="">
<section style="flex-shrink: 0;">
<section style="font-size: 16px;letter-spacing: 1.5px;color: #ffe7a5;" class="">
<section style="font-size: 16px;color: #547bf4;text-align: left;" class="">
<section style="flex-shrink: 0;margin: -10px 0 0 -10px;transform: translateX(-15px);-webkit-transform: translateX(-15px);-moz-transform: translateX(-15px);-o-transform: translateX(-15px);" class="">
<section class="assistant" style="width: 35px; height: 0px;box-sizing:border-box;"></section>
<section style="background-color: #f6faff;border-radius: 10px;padding: 15px 15px;box-sizing:border-box;" class="">
<section class="135brush _135editor" style="text-align: justify;line-height:1.75em;letter-spacing: 1.5px;font-size:14px;color:#333333;background-color: transparent;" >
<p style="text-indent:2.21428em">
经过微步沙箱检测,判断该文件属于恶意文件。该文档宏代码使用VBScript编写。该代码的行为特征是,在文档打开时,通过删除原有的代码并插入恶意代码来感染文档。如果文档是Normal Template,则会在保存时将恶意代码保存到新文件中。攻击者通过在文档中插入恶意代码,达到感染其他文档的目的。
<section class="_135editor">
<section style="margin: 10px auto;" class="">
<section style="border-radius: 5px;border: 1px solid #b1d3ef;background-color: #f5faff;padding: 30px 10px;box-sizing:border-box;" class="">
<section class="box-edit" style="margin-bottom: 15px;">
<section style="text-align: left;" class="">
<section style="display: inline-block;">
<section style="font-size: 14px;color: #174dd6;text-align: center;padding-right: 35px;box-sizing:border-box;" class="">
<strong>4.2.1 情报IOC和行为检测分析</strong>
<section style="width: 100%;height: 8px;background-color: #b1d3ef;margin-top: -8px;max-width:100% !important;box-sizing:border-box;" class=""></section>
<section class="135brush" style="text-align: justify;line-height:1.75em;letter-spacing: 1.5px;font-size:14px;color:#333333;background-color: transparent;padding-top: 5px;box-sizing:border-box;">
<p style="text-indent:2.21428em">
微步判定该文件为恶意,情报内容为Thus【恶意软件】。根据文件行为检测,发现可疑行为3处,通用行为3处。
<p style="text-indent:2.21428em">
可疑行为:系统环境探测(执行一个或多个WMI查询、执行一个或多个可用于识别虚拟机的WMI查询);恶意行为特征(Word文档hook了当前文档的open事件)。
<p style="text-indent:2.21428em">
通用行为:静态文件特征(包含嵌入的VBA宏);系统敏感操作(调用COM相关API、在IE缓存目录中创建或修改文件)。
<section class="lake-content" typography="classic" style="height: 0px;"></section>
<section class="box-edit" style="margin-bottom: 15px;">
<section style="text-align: left;" class="">
<section style="display: inline-block;">
<section style="font-size: 14px;color: #174dd6;text-align: center;padding-right: 35px;box-sizing:border-box;" class="">
<strong class="135brush" >4.2.2 宏分析</strong>
<section style="width: 100%;height: 8px;background-color: #b1d3ef;margin-top: -8px;max-width:100% !important;box-sizing:border-box;" class=""></section>
<section class="135brush" style="text-align: justify;line-height:1.75em;letter-spacing: 1.5px;font-size:14px;color:#333333;background-color: transparent;padding-top: 5px;box-sizing:border-box;">
<p style="text-indent: 0em;">
1)AutoExec-Document_Open(高风险)
<p style="text-indent:2.21428em">
当Word或Publisher文档打开时自动运行。此行为常用于恶意宏代码的初始执行,攻击者可通过此功能在用户打开文档时自动触发恶意操作(如下载恶意软件、执行命令)。
<p style="text-indent:2.21428em">
建议:检查宏代码内容,确认是否存在可疑操作(如调用外部资源、执行Shell命令)。
<p style="text-indent:2.21428em">
可能删除文件。KILL关键字通常用于删除文件,恶意代码可能利用此功能删除系统关键文件或用户数据,造成破坏。
<p style="text-indent:2.21428em">
建议:<span style="background-color: transparent; caret-color: red;">检查KILL操作的目标文件路径,确认是否为恶意删除行为。</span>
3)<span style="background-color: transparent; caret-color: red;">Suspicious–VBProject(高风险)</span>
<p style="text-indent:2.21428em">
可能尝试修改VBA代码(自我修改)。VBProject关键字表明宏可能尝试修改VBA代码本身,这是恶意宏的常见行为,用于隐藏或动态生成恶意代码。
<p style="text-indent:2.21428em">
<span style="background-color: transparent; caret-color: red;">建议:检查代码中是否存在动态修改VBA代码的逻辑(如添加/删除模块、修改函数)。</span>
4)Suspicious-VBComponents(高风险)
<p style="text-indent:2.21428em">
可能尝试修改VBA代码(自我修改)。VBComponents关键字通常与VBProject一起使用,用于动态修改VBA组件(如添加新模块、修改现有模块)。
<p style="text-indent:2.21428em">
建议:检查代码中是否存在对VBComponents的操作,确认是否为恶意行为。
5)S<span style="background-color: transparent; caret-color: red;">uspicious–CodeModule(高风险)</span>
<p style="text-indent:2.21428em">
可能尝试修改VBA代码(自我修改)。CodeModule关键字用于直接操作VBA代码模块,恶意代码可能利用此功能动态插入或修改代码逻辑。
<p style="text-indent:2.21428em">
建议:检查代码中是否存在对CodeModule的操作,确认是否为恶意行为。
<span style="background-color: transparent; caret-color: red;">6)Suspicious–Base64 Strings(中高风险)</span>
<p style="text-indent:2.21428em">
检测到Base64编码字符串,可能用于混淆字符串(可使用--decode选项解码查看)。Base64编码常用于隐藏恶意代码或敏感信息(如URL、Payload)。
<p style="text-indent:2.21428em">
建议:解码Base64字符串,检查其内容是否为恶意代码或可疑链接。
<section class="lake-content" typography="classic" style="height: 0px;">
<section class="lake-content" typography="classic" style="height: 0px;"></section>
<section class="box-edit" style="margin-bottom: 15px; height: 0px;"></section>
<section class="_135editor" style="height: 0px;"></section>
<section class="_135editor" style="height: 0px;"></section>
<section class="_135editor" >
<section style="margin: 10px auto; display: flex; justify-content: center;" class="">
<section style="display: flex;align-items: center;" class="">
<section style="flex-shrink: 0;" class="">
<section style="width: 9px;height: 9px;border: 1px solid #ffd895;background-color: #ffffff;border-radius: 100%;margin-bottom: -8px;margin-left: 3px;box-sizing:border-box;transform: rotateZ(1deg);-webkit-transform: rotateZ(1deg);-moz-transform: rotateZ(1deg);-o-transform: rotateZ(1deg);" class=""></section>
<section class="assistant" style="font-size: 16px;letter-spacing: 1.5px;color: #ffffff;width: 38px;height: 38px;border-radius: 100%;background-color: #ffd895;display: flex;justify-content: center;align-items: center;box-sizing:border-box;">
<strong>0</strong><strong class="autonum" title="" >5</strong>
<section style="margin-left: 8px;">
<section style="display: flex;justify-content: space-between;">
<section style="width: 20px;height: 1px;border-bottom: 1px solid #6bb5df;box-sizing:border-box;"></section>
<section style="width: 20px;height: 1px;border-bottom: 1px solid #6bb5df;box-sizing:border-box;"></section>
<section style="border-left: 1px solid #6bb5df;border-right: 1px solid #6bb5df;padding: 4px 12px;box-sizing:border-box;" class="">
<section style="font-size: 16px;color: #258bc3;text-align: center;" class="">
<section style="display: flex;justify-content: space-between;" class="">
<section style="width: 20px;height: 1px;border-top: 1px solid #6bb5df;box-sizing:border-box;" class="">
<section class="_135editor" >
<section style="margin: 10px auto;" class="">
<section class="" style="height: 0px;"></section>
<section style="background-color: #f6faff;border-radius: 10px;padding: 15px 15px;box-sizing:border-box;" class="">
<section class="135brush _135editor" style="text-align: justify;line-height:1.75em;letter-spacing: 1.5px;font-size:14px;color:#333333;background-color: transparent;" >
<p style="text-indent:2.21428em">
将文件拖入火绒进行检测,发现该文件属于恶意文件。并自动进行文件隔离。
<section class="_135editor" >
<section style="margin: 10px auto; display: flex; justify-content: center;" class="">
<section style="display: flex;align-items: center;" class="">
<section style="flex-shrink: 0;" class="">
<section style="width: 9px;height: 9px;border: 1px solid #ffd895;background-color: #ffffff;border-radius: 100%;margin-bottom: -8px;margin-left: 3px;box-sizing:border-box;transform: rotateZ(1deg);-webkit-transform: rotateZ(1deg);-moz-transform: rotateZ(1deg);-o-transform: rotateZ(1deg);" class=""></section>
<section class="assistant" style="font-size: 16px;letter-spacing: 1.5px;color: #ffffff;width: 38px;height: 38px;border-radius: 100%;background-color: #ffd895;display: flex;justify-content: center;align-items: center;box-sizing:border-box;">
<strong>0</strong><strong class="autonum" title="" >6</strong>
<section style="margin-left: 8px;">
<section style="display: flex;justify-content: space-between;" class="">
<section style="width: 20px;height: 1px;border-bottom: 1px solid #6bb5df;box-sizing:border-box;" class=""></section>
<section style="width: 20px;height: 1px;border-bottom: 1px solid #6bb5df;box-sizing:border-box;"></section>
<section style="border-left: 1px solid #6bb5df;border-right: 1px solid #6bb5df;padding: 4px 12px;box-sizing:border-box;" class="">
<section style="font-size: 16px;color: #258bc3;text-align: center;" class="">
<strong>Windows安全中心拦截</strong>
<section class="_135editor" >
<section style="margin: 10px auto;" class="">
<section class="" style="height: 0px;"></section>
<section style="background-color: #f6faff;border-radius: 10px;padding: 15px 15px;box-sizing:border-box;" class="">
<section class="135brush _135editor" style="text-align: justify;line-height:1.75em;letter-spacing: 1.5px;font-size:14px;color:#333333;background-color: transparent;" >
<p style="text-indent:2.21428em">
文档从压缩包解压后,Windows安全中心立马会对其进行拦截,并通知用户相关信息。
<section class="_135editor" >
<section style="margin: 10px auto; display: flex; justify-content: center;" class="">
<section style="display: flex;align-items: center;" class="">
<section style="flex-shrink: 0;" class="">
<section style="width: 9px;height: 9px;border: 1px solid #ffd895;background-color: #ffffff;border-radius: 100%;margin-bottom: -8px;margin-left: 3px;box-sizing:border-box;transform: rotateZ(1deg);-webkit-transform: rotateZ(1deg);-moz-transform: rotateZ(1deg);-o-transform: rotateZ(1deg);" class=""></section>
<section class="assistant" style="font-size: 16px;letter-spacing: 1.5px;color: #ffffff;width: 38px;height: 38px;border-radius: 100%;background-color: #ffd895;display: flex;justify-content: center;align-items: center;box-sizing:border-box;">
<strong>0</strong><strong class="autonum" title="" >7</strong>
<section style="margin-left: 8px;">
<section style="display: flex;justify-content: space-between;">
<section style="width: 20px;height: 1px;border-bottom: 1px solid #6bb5df;box-sizing:border-box;" class=""></section>
<section style="width: 20px;height: 1px;border-bottom: 1px solid #6bb5df;box-sizing:border-box;"></section>
<section style="border-left: 1px solid #6bb5df;border-right: 1px solid #6bb5df;padding: 4px 12px;box-sizing:border-box;" class="">
<section style="font-size: 16px;color: #258bc3;text-align: center;" class="">
<section class="_135editor" >
<section style="margin: 10px auto;">
<section style="border: 1px solid #a3b4e6;border-radius: 6px;display: flex;justify-content: space-between;box-sizing:border-box;" class="">
<section style="display: flex;padding: 0 6px;align-items: center;box-sizing:border-box;" class="">
<section style="flex-shrink: 0;">
<section style="font-size: 16px;letter-spacing: 1.5px;color: #ffe7a5;" class="">
<section style="font-size: 16px;color: #547bf4;text-align: left;" class="">
<strong class="135brush" > 传播机制</strong>
<section style="flex-shrink: 0;margin: -10px 0 0 -10px;transform: translateX(-15px);-webkit-transform: translateX(-15px);-moz-transform: translateX(-15px);-o-transform: translateX(-15px);">
<section class="assistant" style="width: 35px; height: 0px;box-sizing:border-box;"></section>
<section style="background-color: #f6faff;border-radius: 10px;padding: 15px 15px;box-sizing:border-box;" class="">
<section class="135brush _135editor" style="text-align: justify;line-height:1.75em;letter-spacing: 1.5px;font-size:14px;color:#333333;background-color: transparent;" >
<p style="text-indent:2.21428em">
当用户打开被感染的文档时,病毒会尝试感染全局模版(NormalTemplate)。
<p style="text-indent:2.21428em">
一旦全局模版被感染,所有新创建的文档都会自动包含病毒代码。
<p style="text-indent:2.21428em">
如果用户将感染后的文件发送给其他人,病毒会进一步传播,
<section class="_135editor" >
<section style="margin: 10px auto;">
<section style="border: 1px solid #a3b4e6;border-radius: 6px;display: flex;justify-content: space-between;box-sizing:border-box;" class="">
<section style="display: flex;padding: 0 6px;align-items: center;box-sizing:border-box;" class="">
<section style="flex-shrink: 0;">
<section style="font-size: 16px;letter-spacing: 1.5px;color: #ffe7a5;" class="">
<section style="font-size: 16px;color: #547bf4;text-align: left;" class="">
<strong class="135brush" > 潜在危害</strong>
<section style="background-color: #f6faff;border-radius: 10px;padding: 15px 15px;box-sizing:border-box;" class="">
<section class="135brush _135editor" style="text-align: justify;line-height:1.75em;letter-spacing: 1.5px;font-size:14px;color:#333333;background-color: transparent;" >
<p style="text-indent:2.21428em">
<p style="text-indent:2.21428em">
<p style="text-indent:2.21428em">
<section class="_135editor" >
<section style="margin: 10px auto; display: flex; justify-content: center;" class="">
<section style="display: flex;align-items: center;" class="">
<section style="flex-shrink: 0;" class="">
<section style="width: 9px;height: 9px;border: 1px solid #ffd895;background-color: #ffffff;border-radius: 100%;margin-bottom: -8px;margin-left: 3px;box-sizing:border-box;transform: rotateZ(1deg);-webkit-transform: rotateZ(1deg);-moz-transform: rotateZ(1deg);-o-transform: rotateZ(1deg);" class=""></section>
<section class="assistant" style="font-size: 16px;letter-spacing: 1.5px;color: #ffffff;width: 38px;height: 38px;border-radius: 100%;background-color: #ffd895;display: flex;justify-content: center;align-items: center;box-sizing:border-box;">
<strong>0</strong><strong class="autonum" title="" >8</strong>
<section style="margin-left: 8px;">
<section style="display: flex;justify-content: space-between;">
<section style="width: 20px;height: 1px;border-bottom: 1px solid #6bb5df;box-sizing:border-box;" class=""></section>
<section style="width: 20px;height: 1px;border-bottom: 1px solid #6bb5df;box-sizing:border-box;"></section>
<section style="border-left: 1px solid #6bb5df;border-right: 1px solid #6bb5df;padding: 4px 12px;box-sizing:border-box;" class="">
<section style="font-size: 16px;color: #258bc3;text-align: center;" class="">
<section class="_135editor" >
<section style="margin: 10px auto;">
<section style="border: 1px solid #a3b4e6;border-radius: 6px;display: flex;justify-content: space-between;box-sizing:border-box;" class="">
<section style="display: flex;padding: 0 6px;align-items: center;box-sizing:border-box;" class="">
<section style="flex-shrink: 0;">
<section style="font-size: 16px;letter-spacing: 1.5px;color: #ffe7a5;" class="">
<section style="font-size: 16px;color: #547bf4;text-align: left;" class="">
<strong class="135brush" > 恶意行为链条</strong>
<section style="flex-shrink: 0;margin: -10px 0 0 -10px;transform: translateX(-15px);-webkit-transform: translateX(-15px);-moz-transform: translateX(-15px);-o-transform: translateX(-15px);">
<section class="assistant" style="width: 35px; height: 0px;box-sizing:border-box;"></section>
<section style="background-color: #f6faff;border-radius: 10px;padding: 15px 15px;box-sizing:border-box;" class="">
<section class="135brush _135editor" style="text-align: justify;line-height:1.75em;letter-spacing: 1.5px;font-size:14px;color:#333333;background-color: transparent;" >
<p style="text-indent:2.21428em">
<span style="background-color: transparent; caret-color: red;">触发条件:用户打开文档→ Document_Open自动执行。</span>
<p style="text-indent:2.21428em">
禁用防护:关闭Word的安全提示(Options.VirusProtection = False)。
<p style="text-indent:2.21428em">
自我复制:感染全局模板(NormalTemplate)或其他文档(ActiveDocument)。
<p style="text-indent:2.21428em">
传播机制:通过保存被感染文档,病毒随文件传播给其他用户。
<section class="_135editor" >
<section style="margin: 10px auto;">
<section style="border: 1px solid #a3b4e6;border-radius: 6px;display: flex;justify-content: space-between;box-sizing:border-box;" class="">
<section style="display: flex;padding: 0 6px;align-items: center;box-sizing:border-box;" class="">
<section style="flex-shrink: 0;">
<section style="font-size: 16px;letter-spacing: 1.5px;color: #ffe7a5;" class="">
<section style="font-size: 16px;color: #547bf4;text-align: left;" class="">
<strong class="135brush" > 检测结果关联</strong>
<section style="flex-shrink: 0;margin: -10px 0 0 -10px;transform: translateX(-15px);-webkit-transform: translateX(-15px);-moz-transform: translateX(-15px);-o-transform: translateX(-15px);">
<section class="assistant" style="width: 35px; height: 0px;box-sizing:border-box;"></section>
<section style="background-color: #f6faff;border-radius: 10px;padding: 15px 15px;box-sizing:border-box;" class="">
<section class="135brush _135editor" style="text-align: justify;line-height:1.75em;letter-spacing: 1.5px;font-size:14px;color:#333333;background-color: transparent;" >
<p style="text-indent:2.21428em">
<span style="background-color: transparent; caret-color: red;">Chinese Simplified + Macros_AutoExec:表明这是一个针对中文用户的自动执行宏病毒。</span>
<p style="text-indent:2.21428em">
Macros_Modify + Thus:确认病毒具有代码篡改能力,符合已知宏病毒特征。
<section class="_135editor" >
<section style="margin: 10px auto; display: flex; justify-content: center;" class="">
<section style="display: flex;align-items: center;" class="">
<section style="flex-shrink: 0;" class="">
<section style="width: 9px;height: 9px;border: 1px solid #ffd895;background-color: #ffffff;border-radius: 100%;margin-bottom: -8px;margin-left: 3px;box-sizing:border-box;transform: rotateZ(1deg);-webkit-transform: rotateZ(1deg);-moz-transform: rotateZ(1deg);-o-transform: rotateZ(1deg);" class=""></section>
<section class="assistant" style="font-size: 16px;letter-spacing: 1.5px;color: #ffffff;width: 38px;height: 38px;border-radius: 100%;background-color: #ffd895;display: flex;justify-content: center;align-items: center;box-sizing:border-box;">
<strong>0</strong><strong class="autonum" title="" >9</strong>
<section style="margin-left: 8px;">
<section style="display: flex;justify-content: space-between;">
<section style="width: 20px;height: 1px;border-bottom: 1px solid #6bb5df;box-sizing:border-box;" class=""></section>
<section style="width: 20px;height: 1px;border-bottom: 1px solid #6bb5df;box-sizing:border-box;"></section>
<section style="border-left: 1px solid #6bb5df;border-right: 1px solid #6bb5df;padding: 4px 12px;box-sizing:border-box;" class="">
<section style="font-size: 16px;color: #258bc3;text-align: center;" class="">
<section class="_135editor" >
<section style="margin: 10px auto;">
<section style="border: 1px solid #a3b4e6;border-radius: 6px;display: flex;justify-content: space-between;box-sizing:border-box;" class="">
<section style="display: flex;padding: 0 6px;align-items: center;box-sizing:border-box;" class="">
<section style="flex-shrink: 0;">
<section style="font-size: 16px;letter-spacing: 1.5px;color: #ffe7a5;" class="">
<section style="font-size: 16px;color: #547bf4;text-align: left;" class="">
<strong class="135brush" > 隔离文件</strong>
<section style="flex-shrink: 0;margin: -10px 0 0 -10px;transform: translateX(-15px);-webkit-transform: translateX(-15px);-moz-transform: translateX(-15px);-o-transform: translateX(-15px);">
<section class="assistant" style="width: 35px; height: 0px;box-sizing:border-box;"></section>
<section style="background-color: #f6faff;border-radius: 10px;padding: 15px 15px;box-sizing:border-box;" class="">
<section class="135brush _135editor" style="text-align: justify;line-height:1.75em;letter-spacing: 1.5px;font-size:14px;color:#333333;background-color: transparent;" >
<p style="text-indent:2.21428em">
<section class="_135editor" >
<section style="margin: 10px auto;">
<section style="border: 1px solid #a3b4e6;border-radius: 6px;display: flex;justify-content: space-between;box-sizing:border-box;" class="">
<section style="display: flex;padding: 0 6px;align-items: center;box-sizing:border-box;" class="">
<section style="flex-shrink: 0;">
<section style="font-size: 16px;letter-spacing: 1.5px;color: #ffe7a5;" class="">
<section style="font-size: 16px;color: #547bf4;text-align: left;" class="">
<strong class="135brush" > 清除病毒</strong>
<section style="flex-shrink: 0;margin: -10px 0 0 -10px;transform: translateX(-15px);-webkit-transform: translateX(-15px);-moz-transform: translateX(-15px);-o-transform: translateX(-15px);">
<section class="assistant" style="width: 35px; height: 0px;box-sizing:border-box;"></section>
<section style="background-color: #f6faff;border-radius: 10px;padding: 15px 15px;box-sizing:border-box;" class="">
<section class="135brush _135editor" style="text-align: justify;line-height:1.75em;letter-spacing: 1.5px;font-size:14px;color:#333333;background-color: transparent;" >
<p style="text-indent:2.21428em">
使用火绒进行全盘扫描,删除恶意文件。尤其是扫描Word文档和模版(特别注意Normal.dot)。
<section class="_135editor" >
<section style="margin: 10px auto;">
<section style="border: 1px solid #a3b4e6;border-radius: 6px;display: flex;justify-content: space-between;box-sizing:border-box;" class="">
<section style="display: flex;padding: 0 6px;align-items: center;box-sizing:border-box;" class="">
<section style="flex-shrink: 0;">
<section style="font-size: 16px;letter-spacing: 1.5px;color: #ffe7a5;" class="">
<section style="font-size: 16px;color: #547bf4;text-align: left;" class="">
<strong class="135brush" > 清除病毒</strong>
<section style="flex-shrink: 0;margin: -10px 0 0 -10px;transform: translateX(-15px);-webkit-transform: translateX(-15px);-moz-transform: translateX(-15px);-o-transform: translateX(-15px);">
<section class="assistant" style="width: 35px; height: 0px;box-sizing:border-box;"></section>
<section style="background-color: #f6faff;border-radius: 10px;padding: 15px 15px;box-sizing:border-box;" class="">
<section class="135brush _135editor" style="text-align: justify;line-height:1.75em;letter-spacing: 1.5px;font-size:14px;color:#333333;background-color: transparent;" >
<p style="text-indent:2.21428em">
使用火绒进行全盘扫描,删除恶意文件。尤其是扫描Word文档和模版(特别注意Normal.dot)。
<section class="_135editor" >
<section style="margin: 10px auto;">
<section style="border: 1px solid #a3b4e6;border-radius: 6px;display: flex;justify-content: space-between;box-sizing:border-box;" class="">
<section style="display: flex;padding: 0 6px;align-items: center;box-sizing:border-box;" class="">
<section style="flex-shrink: 0;">
<section style="font-size: 16px;letter-spacing: 1.5px;color: #ffe7a5;" class="">
<section style="font-size: 16px;color: #547bf4;text-align: left;" class="">
<strong class="135brush" > 清除文档宏代码</strong>
<section style="background-color: #f6faff;border-radius: 10px;padding: 15px 15px;box-sizing:border-box;" class="">
<section class="135brush _135editor" style="text-align: justify;line-height:1.75em;letter-spacing: 1.5px;font-size:14px;color:#333333;background-color: transparent;" >
<p style="text-indent:2.21428em">
禁用宏功能后,使用OfficePurge清除文档中的恶意宏代码。
<p style="text-indent:2.21428em">
OfficePurge——安全的VBA宏清理工具。
<section class="_135editor" >
<section style="margin: 10px auto;" class="">
<section style="border: 1px solid #a3b4e6;border-radius: 6px;display: flex;justify-content: space-between;box-sizing:border-box;" class="">
<section style="display: flex;padding: 0 6px;align-items: center;box-sizing:border-box;" class="">
<section style="flex-shrink: 0;">
<section style="font-size: 16px;letter-spacing: 1.5px;color: #ffe7a5;" class="">
<section style="font-size: 16px;color: #547bf4;text-align: left;" class="">
<strong class="135brush" > 禁用宏</strong>
<section style="flex-shrink: 0;margin: -10px 0 0 -10px;transform: translateX(-15px);-webkit-transform: translateX(-15px);-moz-transform: translateX(-15px);-o-transform: translateX(-15px);">
<section class="assistant" style="width: 35px; height: 0px;box-sizing:border-box;"></section>
<section style="background-color: #f6faff;border-radius: 10px;padding: 15px 15px;box-sizing:border-box;" class="">
<section class="135brush _135editor" style="text-align: justify;line-height:1.75em;letter-spacing: 1.5px;font-size:14px;color:#333333;background-color: transparent;" >
<p style="text-indent:2.21428em">
以word2021为例,禁用宏的方法是:文件—>更多—>选项—>信任中心—>信任中心设置—>宏设置—>禁用所有宏并发出通知。
<section class="135brush _135editor" style="text-align: justify;line-height:1.75em;letter-spacing: 1.5px;font-size:14px;color:#333333;background-color: transparent;" >
<p style="text-indent:2.21428em">
<span style="background-color: transparent; caret-color: red;">以WPS2023精简版为例,禁用宏的方法是:文件—>选项—>信任中心—>宏安全性—>安全级(非常高)。</span>
<section class="_135editor" >
<section style="margin: 10px auto;">
<section style="border: 1px solid #a3b4e6;border-radius: 6px;display: flex;justify-content: space-between;box-sizing:border-box;" class="">
<section style="display: flex;padding: 0 6px;align-items: center;box-sizing:border-box;" class="">
<section style="flex-shrink: 0;">
<section style="font-size: 16px;letter-spacing: 1.5px;color: #ffe7a5;" class="">
<section style="font-size: 16px;color: #547bf4;text-align: left;" class="">
<strong class="135brush" > 越过自动宏</strong>
<section style="background-color: #f6faff;border-radius: 10px;padding: 15px 15px;box-sizing:border-box;" class="">
<section class="135brush _135editor" style="text-align: justify;line-height:1.75em;letter-spacing: 1.5px;font-size:14px;color:#333333;background-color: transparent;" >
<p style="text-indent:2.21428em">
<span style="background-color: transparent; caret-color: red;">如果怀疑文档中存在宏病毒,可以在Office打开文档的时候,始终按住Shift键,将禁止存在的一起自动宏。这和禁用宏有异曲同工之妙,Shift键可以在退出时禁止任何AutoClose宏。</span>
<p style="text-indent:2.21428em">
这种方法的缺陷也很明显,它只能对付一时,当宏病毒利用其它菜单选项来实现破坏活动,这种方法就不再有效。
<section class="_135editor" >
<section style="margin: 10px auto;">
<section style="border: 1px solid #a3b4e6;border-radius: 6px;display: flex;justify-content: space-between;box-sizing:border-box;" class="">
<section style="display: flex;padding: 0 6px;align-items: center;box-sizing:border-box;" class="">
<section style="flex-shrink: 0;">
<section style="font-size: 16px;letter-spacing: 1.5px;color: #ffe7a5;" class="">
<section style="font-size: 16px;color: #547bf4;text-align: left;" class="">
<strong class="135brush" > 恢复被宏病毒破坏的文档</strong>
<section style="background-color: #f6faff;border-radius: 10px;padding: 15px 15px;box-sizing:border-box;" class="">
<section class="135brush _135editor" style="text-align: justify;line-height:1.75em;letter-spacing: 1.5px;font-size:14px;color:#333333;background-color: transparent;" >
<p style="text-indent:2.21428em">
<span style="background-color: transparent; caret-color: red;">对于普通用户来说,清理宏病毒显得麻烦,因为文档被宏病毒感染后(实际上是文档使用的模板文档被感染),使用文档时常常会出现一些异常情况,即使用杀毒软件将所有带毒的文档文件都处理一遍,但是,当重新打开它们时病毒又出现了。有些用户采用的是将Office卸载重装,但是有时候问题还是没有被解决。</span>
<p style="text-indent:2.21428em">
其实,对于宏病毒的清理并不难,下面以删除Word宏病毒为例分步骤详细说明:
<p style="text-indent:2.21428em">
1)退出Word程序,先查看系统盘根目录下是否存在Autoexec.DOT文件,如果存在,而又不知道它是什么时候出现,则将其删除;
<p style="text-indent:2.21428em">
2)然后找到Normal.DOT文件,一般位于C:Documents and Settings AdministratorApplicationDataMicrosoftTemplates目录下,用先前干净的备份将其替换,也可以直接删除,Word不会因为找不到Normal.DOT而拒绝启动,它会自动重新生成一个干净的没有任何外来宏的Noraml.DOT;
<p style="text-indent:2.21428em">
3)<span style="background-color: transparent; caret-color: red;">查看Noraml.DOT所在的目录中是否存在其他模板文件,如果存在且不是自己复制进去的,将其删除;</span>
<p style="text-indent:2.21428em">
4)重新启动Word程序,查看Word是否恢复正常了;
<p style="text-indent:2.21428em">
5)最后检查宏病毒防护是否被启用了,某些病毒会自动禁用宏病毒防护功能,如果不启用禁用宏功能,Word会很快再次被病毒感染。
<section class="_135editor" >
<section style="margin: 20px auto;" class="">
<section class="assistant" style="width: 35px;margin: auto;box-sizing:border-box;">
<img class="assistant" style="width: 100%; display: block;vertical-align:baseline;box-sizing:border-box;max-width:100% !important;" src="https://bcn.135editor.com/files/images/editor_styles/640e820885d60de6add79190c8e8089f.gif" draggable="false"/>
<section style="display: flex;justify-content: center;padding: 5px 0;box-sizing:border-box;" class="">
<section style="display:flex;align-items: center;">
<section style="font-size: 16px;text-align: justify;color: #4a8be8;font-style: oblique;margin-top: -4px;transform: rotate(15deg);-webkit-transform: rotate(15deg);-moz-transform: rotate(15deg);-o-transform: rotate(15deg);" class="">
<section style="font-size: 16px;text-align: justify;color: #4a8be8;font-style: oblique;padding: 0 5px;box-sizing:border-box;">
<strong class="135brush" >END</strong>
<section style="font-size: 16px;text-align: justify;color: #4a8be8;font-style: oblique;transform: rotate(15deg);-webkit-transform: rotate(15deg);-moz-transform: rotate(15deg);-o-transform: rotate(15deg);">
<section class="_135editor" >
<section style="margin: 10px auto;text-align: center;">
<section style="font-size: 18px; letter-spacing: 1.5px; color: #0b79ff; text-align: left; margin: 0px 0px -25px 40px;transform: rotate(0deg);-webkit-transform: rotate(0deg);-moz-transform: rotate(0deg);-o-transform: rotate(0deg);" class="">
<p style="margin-bottom: 7px; display: block;">
<span style="font-size: 18px;"><strong>免责声明</strong></span>
<section style="display: flex;justify-content: flex-start;align-items: center;margin: 0 0 -4px 25px;">
<section style="width: 7px;height: 7px;background-color: #0b79ff;border-radius: 50%;box-sizing:border-box;"></section>
<section style="width: 20%;height: 1px;background-color: #fff;box-sizing:border-box;max-width:20% !important;" ></section>
<section style="border: 1px solid #5ca6ff;padding: 30px 25px;border-radius: 12px;box-sizing:border-box;" class="">
<section class="135brush" style="text-align: justify;line-height:1.75em;letter-spacing: 1.5px;font-size:14px;color:#333333;background: transparent;">
<p style="margin: 0px; padding: 0px; clear: both; min-height: 1em; cursor: text; caret-color: #ff0000; text-decoration-thickness: initial; -webkit-tap-highlight-color: transparent; outline: 0px; color: rgba(0, 0, 0, 0.9); font-size: 14px; letter-spacing: 0.544px; text-indent: 2em; max-inline-size: 100%; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;text-align:justify;font-family:"PingFang SC", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif;" align="justify">
<span style="font-size:14px;"><span leaf="" style="margin: 0px; padding: 0px; cursor: text; -webkit-tap-highlight-color: transparent; outline: 0px; max-inline-size: 100%; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;">本公众号“暗魂攻防实验室”致力于分享网络安全相关知识及资讯,所有内容仅供学习和交流使用,不得用于任何非法用途。由于传播、利用本公众号“</span><span style="letter-spacing: 0.034em; background-color: transparent; margin: 0px; padding: 0px; cursor: text; -webkit-tap-highlight-color: transparent; outline: 0px; max-inline-size: 100%; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;">暗魂攻防实验室”</span><span style="text-indent: 2em; letter-spacing: 0.034em; background-color: transparent; margin: 0px; padding: 0px; cursor: text; -webkit-tap-highlight-color: transparent; outline: 0px; max-inline-size: 100%; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;">所提供的技术和信息而造成的任何直接或者间接的后果及损失,均由使用者本人负责,公众号及作者不为此承担任何责任!!!</span></span>
<p style="margin: 0px; padding: 0px; clear: both; min-height: 1em; cursor: text; caret-color: #ff0000; text-decoration-thickness: initial; -webkit-tap-highlight-color: transparent; outline: 0px; color: rgba(0, 0, 0, 0.9); font-size: 14px; letter-spacing: 0.544px; text-indent: 2em; max-inline-size: 100%; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;text-align:justify;font-family:"PingFang SC", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif;" align="justify">
<span style="margin: 0px; padding: 0px; cursor: text; -webkit-tap-highlight-color: transparent; outline: 0px; max-inline-size: 100%; max-width: 100%; font-size: 14px; box-sizing: border-box !important; overflow-wrap: break-word !important;">以下为本公众号声明内容,请知悉并遵守:</span>
<p style="margin: 0px; padding: 0px; clear: both; min-height: 1em; cursor: text; caret-color: #ff0000; text-decoration-thickness: initial; -webkit-tap-highlight-color: transparent; outline: 0px; color: rgba(0, 0, 0, 0.9); font-size: 15px; letter-spacing: 0.544px; max-inline-size: 100%; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;text-align:justify;font-family:"PingFang SC", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif;" align="justify">
<span style="font-size:15px;"><strong style="margin: 0px; padding: 0px; box-sizing: border-box !important; overflow-wrap: break-word !important; cursor: text; -webkit-tap-highlight-color: transparent; outline: 0px; max-inline-size: 100%; max-width: 100%;"><span leaf="" style="margin: 0px; padding: 0px; cursor: text; -webkit-tap-highlight-color: transparent; outline: 0px; max-inline-size: 100%; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;">1.关于信息的准确性</span></strong></span>
<p style="margin: 0px; padding: 0px; clear: both; min-height: 1em; cursor: text; caret-color: #ff0000; text-decoration-thickness: initial; -webkit-tap-highlight-color: transparent; outline: 0px; color: rgba(0, 0, 0, 0.9); font-size: 14px; letter-spacing: 0.544px; text-indent: 2em; max-inline-size: 100%; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;text-align:justify;font-family:"PingFang SC", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif;" align="justify">
<span style="font-size:14px;"><strong style="margin: 0px; padding: 0px; box-sizing: border-box !important; overflow-wrap: break-word !important; cursor: text; -webkit-tap-highlight-color: transparent; outline: 0px; max-inline-size: 100%; max-width: 100%;"><span leaf="" style="margin: 0px; padding: 0px; cursor: text; -webkit-tap-highlight-color: transparent; outline: 0px; font-weight: normal; max-inline-size: 100%; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;">本公众号所发布的信息均来源于公开渠道或作者整理,仅供参考,不保证内容的绝对准确性、完整性和时效性。使用者在依赖相关内容前,应独立核实信息的真实性和适用性。</span></strong></span>
<p style="margin: 0px; padding: 0px; clear: both; min-height: 1em; cursor: text; caret-color: #ff0000; text-decoration-thickness: initial; -webkit-tap-highlight-color: transparent; outline: 0px; color: rgba(0, 0, 0, 0.9); font-size: 15px; letter-spacing: 0.544px; max-inline-size: 100%; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;text-align:justify;font-family:"PingFang SC", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif;" align="justify">
<span style="font-size:15px;"><strong style="margin: 0px; padding: 0px; box-sizing: border-box !important; overflow-wrap: break-word !important; cursor: text; -webkit-tap-highlight-color: transparent; outline: 0px; max-inline-size: 100%; max-width: 100%;"><span leaf="" style="margin: 0px; padding: 0px; cursor: text; -webkit-tap-highlight-color: transparent; outline: 0px; max-inline-size: 100%; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;">2.法律与合规性</span></strong></span>
<p style="margin: 0px; padding: 0px; clear: both; min-height: 1em; cursor: text; caret-color: #ff0000; text-decoration-thickness: initial; -webkit-tap-highlight-color: transparent; outline: 0px; color: rgba(0, 0, 0, 0.9); font-size: 14px; letter-spacing: 0.544px; text-indent: 2em; max-inline-size: 100%; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;text-align:justify;font-family:"PingFang SC", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif;" align="justify">
<span style="font-size:14px;"><strong style="margin: 0px; padding: 0px; box-sizing: border-box !important; overflow-wrap: break-word !important; cursor: text; -webkit-tap-highlight-color: transparent; outline: 0px; max-inline-size: 100%; max-width: 100%;"><span leaf="" style="margin: 0px; padding: 0px; cursor: text; -webkit-tap-highlight-color: transparent; outline: 0px; font-weight: normal; max-inline-size: 100%; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;">使用者应严格遵守国家相关法律法规,确保所有操作仅用于合法用途。本公众号明确禁止任何利用内容进行非法活动的行为,由此产生的后果由使用者自行承担,本公众号及作者不承担任何责任。</span></strong></span>
<p style="margin: 0px; padding: 0px; clear: both; min-height: 1em; cursor: text; caret-color: #ff0000; text-decoration-thickness: initial; -webkit-tap-highlight-color: transparent; outline: 0px; color: rgba(0, 0, 0, 0.9); font-size: 15px; letter-spacing: 0.544px; max-inline-size: 100%; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;text-align:justify;font-family:"PingFang SC", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif;" align="justify">
<span style="font-size: 15px;"><strong style="margin: 0px; padding: 0px; box-sizing: border-box !important; overflow-wrap: break-word !important; cursor: text; -webkit-tap-highlight-color: transparent; outline: 0px; max-inline-size: 100%; max-width: 100%;"><span leaf="" style="margin: 0px; padding: 0px; cursor: text; -webkit-tap-highlight-color: transparent; outline: 0px; max-inline-size: 100%; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;">3.版权声明</span></strong></span>
<p style="margin: 0px; padding: 0px; clear: both; min-height: 1em; cursor: text; caret-color: #ff0000; text-decoration-thickness: initial; -webkit-tap-highlight-color: transparent; outline: 0px; color: rgba(0, 0, 0, 0.9); font-size: 14px; letter-spacing: 0.544px; text-indent: 2em; max-inline-size: 100%; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;text-align:justify;font-family:"PingFang SC", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif;" align="justify">
<span style="font-size:14px;"><strong style="margin: 0px; padding: 0px; box-sizing: border-box !important; overflow-wrap: break-word !important; cursor: text; -webkit-tap-highlight-color: transparent; outline: 0px; max-inline-size: 100%; max-width: 100%;"><span leaf="" style="margin: 0px; padding: 0px; cursor: text; -webkit-tap-highlight-color: transparent; outline: 0px; font-weight: normal; max-inline-size: 100%; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;">本公众号部分内容如引用了他人作品或资源,均已标注来源或作者。如有侵权,请及时联系我们,我们将在核实后立即删除并致以歉意。</span></strong></span>
<p style="margin: 0px; padding: 0px; clear: both; min-height: 1em; cursor: text; caret-color: #ff0000; text-decoration-thickness: initial; -webkit-tap-highlight-color: transparent; outline: 0px; color: rgba(0, 0, 0, 0.9); font-size: 15px; letter-spacing: 0.544px; max-inline-size: 100%; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;text-align:justify;font-family:"PingFang SC", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif;" align="justify">
<span style="font-size:15px;"><strong style="margin: 0px; padding: 0px; box-sizing: border-box !important; overflow-wrap: break-word !important; cursor: text; -webkit-tap-highlight-color: transparent; outline: 0px; max-inline-size: 100%; max-width: 100%;"><span leaf="" style="margin: 0px; padding: 0px; cursor: text; -webkit-tap-highlight-color: transparent; outline: 0px; max-inline-size: 100%; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;">4.合法用途限制</span></strong></span>
<p style="margin: 0px; padding: 0px; clear: both; min-height: 1em; cursor: text; caret-color: #ff0000; text-decoration-thickness: initial; -webkit-tap-highlight-color: transparent; outline: 0px; color: rgba(0, 0, 0, 0.9); font-size: 14px; letter-spacing: 0.544px; text-indent: 2em; max-inline-size: 100%; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;text-align:justify;font-family:"PingFang SC", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif;" align="justify">
<span style="font-size:14px;"><strong style="margin: 0px; padding: 0px; box-sizing: border-box !important; overflow-wrap: break-word !important; cursor: text; -webkit-tap-highlight-color: transparent; outline: 0px; max-inline-size: 100%; max-width: 100%;"><span leaf="" style="margin: 0px; padding: 0px; cursor: text; -webkit-tap-highlight-color: transparent; outline: 0px; font-weight: normal; max-inline-size: 100%; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;">本公众号内容仅供参考,任何利用本公众号内容从事违法行为的后果均由使用者自行承担,本公众号及作者对此不承担任何责任。</span></strong></span>
<p style="margin: 0px; padding: 0px; clear: both; min-height: 1em; cursor: text; caret-color: #ff0000; text-decoration-thickness: initial; -webkit-tap-highlight-color: transparent; outline: 0px; color: rgba(0, 0, 0, 0.9); font-size: 15px; letter-spacing: 0.544px; max-inline-size: 100%; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;text-align:justify;font-family:"PingFang SC", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif;" align="justify">
<span style="font-size:15px;"><strong style="margin: 0px; padding: 0px; box-sizing: border-box !important; overflow-wrap: break-word !important; cursor: text; -webkit-tap-highlight-color: transparent; outline: 0px; max-inline-size: 100%; max-width: 100%;"><span leaf="" style="margin: 0px; padding: 0px; cursor: text; -webkit-tap-highlight-color: transparent; outline: 0px; max-inline-size: 100%; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;">5.风险告知</span></strong></span>
<p style="margin: 0px; padding: 0px; clear: both; min-height: 1em; cursor: text; caret-color: #ff0000; text-decoration-thickness: initial; -webkit-tap-highlight-color: transparent; outline: 0px; color: rgba(0, 0, 0, 0.9); font-size: 15px; letter-spacing: 0.544px; text-indent: 2em; max-inline-size: 100%; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;text-align:justify;font-family:"PingFang SC", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif;" align="justify">
<span style="font-size:15px;"><strong style="margin: 0px; padding: 0px; box-sizing: border-box !important; overflow-wrap: break-word !important; cursor: text; -webkit-tap-highlight-color: transparent; outline: 0px; max-inline-size: 100%; max-width: 100%;"><span leaf="" style="margin: 0px; padding: 0px; cursor: text; -webkit-tap-highlight-color: transparent; outline: 0px; font-weight: normal; max-inline-size: 100%; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;">因使用或传播本公众号内容导致的直接或间接后果(如系统损坏、数据丢失、法律责任等),均由使用者自行承担。本公众号及作者对此不承担任何责任。</span></strong></span>
<section class="_135editor" >
<section style="text-align: center; margin: 10px auto;">
<section style="background-color: #f5f8ff;padding: 8px;box-sizing:border-box;" class="">
<section style="border: 1px solid #9eb6fb;box-sizing:border-box;">
<section style="background: url(https://bcn.135editor.com/files/images/editor_styles/00ad3d68a5572477f7d58f5f20436648.png) no-repeat right bottom;background-size: 15%;padding: 15px 0;box-sizing:border-box;" class="">
<section style="display: flex;justify-content: space-evenly;align-items: center;" class="">
<section style="width: 35%;box-sizing:border-box;max-width:35% !important;" >
<section style="width: 100%;max-width: 100% !important;box-sizing:border-box;" class="">
<img class="rich_pages wxw-img" src="https://mmbiz.qpic.cn/mmbiz_png/3XHJ1RF0NSYUpNtNsWQe2XHahYNEwEOUdy9HXnc3zibSJTia1MMca7hlnVa6ngzfMVhnFPSUY8qvH2xHZuuZMDGg/640?wx_fmt=png" style="margin: 0px; padding: 0px; height: auto !important; overflow-wrap: break-word !important; color: rgba(0, 0, 0, 0.9); font-size: 17px; letter-spacing: 0.578px; text-align: justify; background-color: #ffffff; text-decoration-thickness: initial; width: 115px;vertical-align:baseline;box-sizing:border-box;font-family:mp-quote, "PingFang SC", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif;" draggable="false"/>
<section style="width: 50%;box-sizing:border-box;max-width:50% !important;" class="">
<section style="font-size: 27px; letter-spacing: 1.5px; line-height: 30px; background-image: -webkit-linear-gradient(top, #f7d58c, #fde9c0); background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: text; -webkit-text-fill-color: transparent; word-break: normal !important;" class="">
<span style="font-size:27px;"><strong class="135brush" >FINANCE</strong></span>
<section style="display: flex;justify-content: center;align-items: center;margin: -25px 10px 0 0;" class="">
<section class="assistant" style="width: 6px;height: 6px;background-color: #ffc957;border-radius: 50%;box-sizing:border-box;"></section>
<section style="font-size: 17px; letter-spacing: 1.5px; color: #4770ea; margin-left: 7px;" class="">
<span style="font-size:17px;"><strong class="135brush" >扫码联系</strong></span>
<section class="135brush" style="margin-top: 10px; font-size: 15px; letter-spacing: 1.5px; color: #35323b; text-align: center;">
<span style="font-size:15px;">暗魂攻防实验室官方客服</span>
<section style="display: flex;justify-content: flex-end;align-items: flex-end;margin-top: -16px;" class="">
<section class="assistant" style="width: 0;height: 1px;border-bottom: 16px solid #9eb6fb;border-left: 16px solid transparent;margin: 0 -15px 0 0;box-sizing:border-box;"></section>
<section class="assistant" style="width: 0;height: 1px;border-bottom: 15px solid #f5f8ff;border-left: 15px solid transparent;box-sizing:border-box;">
<section class="_135editor" itemscope="" itemtype="https://mp.weixin.qq.com/voc/Guide" >
<section style="margin: 10px auto;" class="">
<section style="margin-bottom: 10px;">
<section style="font-size: 16px;color:#0b79ff;letter-spacing: 1.5px;text-align: justify;box-sizing: border-box;margin-bottom: -18px;margin-left: 25px;" class="">
<strong class="135brush" itemprop="name">往期推荐:</strong>
<section style="max-width: 100% !important;width: 100%;height: 12px;background: #edf5ff;margin-top: 3px;box-sizing:border-box;" class=""></section>
<section style="display: flex;align-items: center;margin-bottom: -5px;" class="">
<section style="flex: 1;height: 1px;background: #0b79ff;"></section>
<section class="assistant" style="width: 10px;margin-left: -5px;height: 10px;border:1px solid #0b79ff;border-radius: 100%;box-sizing:border-box;"></section>
<section class="assistant" style="width: 15px;height: 1px;background: #0b79ff;box-sizing:border-box;"></section>
<section style="border: 1px solid #0b79ff;border-top: none;padding: 20px 20px 10px 20px;box-sizing:border-box;" class="">
<section class="box-edit" style="justify-content: flex-start;align-items: flex-start;display: flex;margin-bottom: 10px;flex-shrink: 0;">
<section class="assistant" style="width: 12px;height: 12px;background:#0b79ff;margin-right: 8px;margin-top: 6px;flex-shrink: 0;box-sizing:border-box;"></section>
<section class="135brush" style="text-align: justify; font-size: 14px; letter-spacing: 1.5px; line-height: 1.75em; color: #464646; box-sizing: border-box;">
<p itemprop="link" itemscope="" itemtype="https://mp.weixin.qq.com/voc/URL" style="vertical-align:inherit;">
<section class="box-edit" style="justify-content: flex-start;align-items: flex-start;display: flex;margin-bottom: 10px;flex-shrink: 0;">
<section class="assistant" style="width: 12px;height: 12px;background:#0b79ff;margin-right: 8px;margin-top: 6px;flex-shrink: 0;box-sizing:border-box;"></section>
<section class="135brush" style="text-align: justify; font-size: 14px; letter-spacing: 1.5px; line-height: 1.75em; color: #464646; box-sizing: border-box;">
<p itemprop="link" itemscope="" itemtype="https://mp.weixin.qq.com/voc/URL" style="vertical-align:inherit;">
<section class="box-edit" style="justify-content: flex-start;align-items: flex-start;display: flex;margin-bottom: 10px;flex-shrink: 0;">
<section class="assistant" style="width: 12px;height: 12px;background:#0b79ff;margin-right: 8px;margin-top: 6px;flex-shrink: 0;box-sizing:border-box;"></section>
<section class="135brush" style="text-align: justify; font-size: 14px; letter-spacing: 1.5px; line-height: 1.75em; color: #464646; box-sizing: border-box;">
<p itemprop="link" itemscope="" itemtype="https://mp.weixin.qq.com/voc/URL" style="vertical-align:inherit;">
<section class="box-edit" style="justify-content: flex-start;align-items: flex-start;display: flex;margin-bottom: 10px;flex-shrink: 0;">
<section class="assistant" style="width: 12px;height: 12px;background:#0b79ff;margin-right: 8px;margin-top: 6px;flex-shrink: 0;box-sizing:border-box;"></section>
<section class="135brush" style="text-align: justify; font-size: 14px; letter-spacing: 1.5px; line-height: 1.75em; color: #464646; box-sizing: border-box;">
<p itemprop="link" itemscope="" itemtype="https://mp.weixin.qq.com/voc/URL" style="vertical-align:inherit;">
<section class="_135editor">
<img class="rich_pages wxw-img" src="https://mmbiz.qpic.cn/mmbiz_jpg/3XHJ1RF0NSYUpNtNsWQe2XHahYNEwEOUon82btdXRD9qIiaqSHGakFW9DdGzv8gFyYECPWzrShUUv40gHn7RMPw/640?wx_fmt=jpeg" style="margin: 0px; padding: 0px; vertical-align: bottom; color: rgba(0, 0, 0, 0.9); font-size: 17px; letter-spacing: 0.578px; text-align: center; text-decoration-thickness: initial; height: auto !important; overflow-wrap: break-word !important; width: 100%;box-sizing:border-box;max-width:100% !important;font-family:mp-quote, "PingFang SC", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif;" draggable="false"/>
原文始发于微信公众号(暗魂攻防实验室):配置不当导致某程序成为服务器“后门”?你的数据可能已暴露
免责声明:文章中涉及的程序(方法)可能带有攻击性,仅供安全研究与教学之用,读者将其信息做其他用途,由读者承担全部法律及连带责任,本站不承担任何法律及连带责任;如有问题可邮件联系(建议使用企业邮箱或有效邮箱,避免邮件被拦截,联系方式见首页),望知悉。
点赞
https://cn-sec.com/archives/3957600.html
复制链接
复制链接
-
左青龙
- 微信扫一扫
-
-
右白虎
- 微信扫一扫
-
评论