{"id":39830,"date":"2021-03-03T17:00:54","date_gmt":"2021-03-03T17:00:54","guid":{"rendered":"https:\/\/www.microsoft.com\/security\/blog\/?p=93008"},"modified":"2021-03-03T17:00:54","modified_gmt":"2021-03-03T17:00:54","slug":"xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware","status":"publish","type":"post","link":"https:\/\/www.threatshub.org\/blog\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware\/","title":{"rendered":"XLM + AMSI: New runtime defense against Excel 4.0 macro malware"},"content":{"rendered":"<p>We have recently expanded the integration of Antimalware Scan Interface (<a href=\"https:\/\/docs.microsoft.com\/en-us\/windows\/win32\/amsi\/antimalware-scan-interface-portal\">AMSI<\/a>) with Office 365 to include the runtime scanning of Excel 4.0 (<a href=\"https:\/\/support.microsoft.com\/en-us\/office\/working-with-excel-4-0-macros-ba8924d4-e157-4bb2-8d76-2c07ff02e0b8\">XLM<\/a>) macros, to help antivirus solutions tackle the increase in attacks that use malicious XLM macros. This integration, an example of the many security features released for Microsoft 365 Apps on a regular basis, reflects our commitment to continuously increase protection for Microsoft 365 customers against the latest threats.<\/p>\n<p>Microsoft Defender Antivirus is using this integration to detect and block XLM-based malware, and we encourage other <a href=\"https:\/\/docs.microsoft.com\/en-us\/windows\/win32\/amsi\/antimalware-scan-interface-portal\">antivirus products to use this open interface<\/a> to gain better visibility and improve protections against these threats.<\/p>\n<p>XLM macros is a legacy macro language that was made available to Microsoft Excel in 1992, prior to the introduction of Visual Basic for Applications (<a href=\"https:\/\/docs.microsoft.com\/en-us\/office\/vba\/api\/overview\/\">VBA<\/a>) in 1993. While more rudimentary than VBA, XLM is powerful enough to provide interoperability with the operating system, and many organizations and users continue to use its functionality for legitimate purposes. Cybercriminals know this, and they have been abusing XLM macros, increasingly more frequently, to call Win32 APIs and run shell commands.<\/p>\n<p>The <a href=\"https:\/\/www.microsoft.com\/security\/blog\/2018\/09\/12\/office-vba-amsi-parting-the-veil-on-malicious-macros\/\">AMSI instrumentation for VBA<\/a> has been providing deep visibility into the runtime behavior of VBA macros. Its release in 2018 effectively removed the armor that macro-obfuscation equipped malware with, exposing malicious code to improved levels of scrutiny. Naturally, threat actors like those behind Trickbot, Zloader, and Ursnif have looked elsewhere for features to abuse and operate under the radar of security solutions, and they found a suitable alternative in XLM.<\/p>\n<p>Like VBA and many other scripting languages abused by malware, XLM code can be obfuscated relatively easily to conceal the real intent of the macro. For example, attackers can hide URLs or file names of executable files from static inspection through simple strings manipulations. Attackers also take advantage of the way macro code persists within the Excel document\u2014while VBA macros are stored in a dedicated OLE stream (and hence can be easily located and extracted), XLM macros do not exist as a separate, well-defined entity. Rather, each XLM macro statement is a formula within a cell. Extracting a whole XLM macro can become a cumbersome task, requiring a cell-by-cell inspection of the whole document.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-93009 size-full\" src=\"https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig1-Sample-XLM-macro.png\" alt=\"Screenshot of Microsoft Excel file with malicious XLM macros\" width=\"541\" height=\"269\" srcset=\"https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig1-Sample-XLM-macro.png 541w, https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig1-Sample-XLM-macro-300x149.png 300w, https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig1-Sample-XLM-macro-539x269.png 539w\" sizes=\"auto, (max-width: 541px) 100vw, 541px\"><\/p>\n<p><em>Figure 1. Sample malicious XLM macro<\/em><\/p>\n<p>In addition, while formulas are typically executed downwards starting from the top, with XLM the macro content can be quite spread out, thanks to control flow statements like <em>RUN<\/em>, <em>CALL<\/em>, or <em>GOTO<\/em>, which allow the switching of execution flow from one column to another. This feature, together with obfuscation, has been abused by attackers to craft documents that could evade static analysis.<\/p>\n<h2>AMSI instrumentation for Excel 4.0 (XLM) macros<\/h2>\n<p>AMSI is an open interface that allows any application to request the scanning of any data at any time. In a nutshell, this technology provides applications the capability to interface with the installed antivirus solution in order to inspect and scan potentially dangerous data (e.g., a file downloaded from a remote location, or data generated dynamically by an application). Microsoft already utilizes this technology in various applications to detect malicious macros, script-based malware, and other threats:<\/p>\n<ul>\n<li>Office VBA macros<\/li>\n<li>JScript<\/li>\n<li>VBScript<\/li>\n<li>PowerShell<\/li>\n<li>WMI<\/li>\n<li>Dynamically loaded .NET assemblies<\/li>\n<li>MSHTA\/Jscript9<\/li>\n<\/ul>\n<p>The data provided by AMSI is leveraged extensively by <a href=\"https:\/\/www.microsoft.com\/en-us\/microsoft-365\/security\/endpoint-defender\">Microsoft Defender for Endpoint<\/a>. It provides important data for <a href=\"https:\/\/www.microsoft.com\/security\/blog\/2020\/08\/27\/stopping-active-directory-attacks-and-other-post-exploitation-behavior-with-amsi-and-machine-learning\/\">machine learning models<\/a> that process billions of signals every day to identify and block malicious behaviors. The XLM instrumentation is similar to the implementation in VBA and other scripting engines that integrate with AMSI:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-93010\" src=\"https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig2-AMSI-XLM-instrumentation.png\" alt=\"Diagram representation of AMSI instrumentation for XLM\" width=\"975\" height=\"542\" srcset=\"https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig2-AMSI-XLM-instrumentation.png 975w, https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig2-AMSI-XLM-instrumentation-300x167.png 300w, https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig2-AMSI-XLM-instrumentation-768x427.png 768w\" sizes=\"auto, (max-width: 975px) 100vw, 975px\"><\/p>\n<p><em>Figure 2. AMSI instrumentation for XLM<\/em><\/p>\n<p>The XLM language allows a user to write programs that call native runtime functions, as well as external Win32 APIs. In both cases, the interfaces that dispatch the calls to these functions are intercepted and directed to an internal logger. The logger component stores the intercepted functions in text format within a circular buffer. When certain dangerous functions are called, for example the runtime function <em>EXEC<\/em> or the Win32 API <em>ShellExecute<\/em>, XLM halts the macro execution and invokes AMSI to request a synchronous scan of the circular buffer containing the functions logged up to that point. Such dangerous functions are called \u201ctrigger functions\u201d. If the antivirus identifies the macro as malware, the execution of the macro is aborted and Excel is safely terminated, blocking the attack and preventing the malicious macro from doing any damage. Otherwise, the user experience continues seamlessly.<\/p>\n<p>It\u2019s important to observe that the interception of XLM function calls happens at runtime. This means that the logger component always registers the true behavior of all functions and associated parameters, which may contain URLs, file names, and other important IOCs, regardless of the obfuscation used by the malware.<\/p>\n<p>The following is an example of an XLM macro found in a malicious document:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-93011\" src=\"https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig3-Sample-XLM-macro.png\" alt=\"Screenshot of XLM macro\" width=\"384\" height=\"314\" srcset=\"https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig3-Sample-XLM-macro.png 384w, https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig3-Sample-XLM-macro-300x245.png 300w\" sizes=\"auto, (max-width: 384px) 100vw, 384px\"><\/p>\n<p><em>Figure 3. Sample XLM macro <\/em><\/p>\n<p>This malicious macro consists of a series of commands (e.g., <em>RUN<\/em>, <em>REGISTER<\/em>, <em>IF<\/em>, etc.) with related parameters specified by references to other cells. For example, the token <em>$CA$1889<\/em> passed to the first function <em>RUN<\/em> indicates that the string provided as parameter for this function is in the cell at column CA and row 1889.<\/p>\n<p>This is only one of the many ways that XLM-based malware can obfuscate code. Detecting this macro is challenging because it doesn\u2019t expose any suspicious strings or behavior. This is where the power of AMSI comes into play: the instrumentation allows XLM to inspect functions when they are invoked, so that all their parameters have already been de-obfuscated. As a result, the above macro produces a log that looks like the following:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-93012\" src=\"https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig4-Sample-log.png\" alt=\"Sample log produced when XLM macro is run\" width=\"584\" height=\"281\" srcset=\"https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig4-Sample-log.png 584w, https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig4-Sample-log-300x144.png 300w\" sizes=\"auto, (max-width: 584px) 100vw, 584px\"><\/p>\n<p><em>Figure 4. Sample log<\/em><\/p>\n<p>The XLM engine determines that the dangerous function <em>ShellExecuteA<\/em> is being invoked, and subsequently places the macro execution on hold and passes the macro behavioral log to AMSI for scanning. The antivirus now has visibility into a behavioral log that completely exposes all of the data including, API names, URLs, and file names. The log makes it easy to conclude that this macro is trying to download and execute a DLL payload via the tool <em>Rundll32<\/em>.<\/p>\n<h2>Case study: ZLoader campaign<\/h2>\n<p>ZLoader is a malware family that has been actively perpetrating financial theft for several years. Like many of its peers, ZLoader operates via aggressive campaigns that rely on social engineering and the abuse of Office documents spread via email.<\/p>\n<p>We have been monitoring the activity of this threat and observed that in the last year the attackers shifted to XLM as their infection vector of choice. The Excel documents have a typical lure message to trick the user into clicking \u201cEnable Content\u201d to allow the macro code to run.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-93013\" src=\"https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig5-Malicious-Excel-file-Zloader-campaign.png\" alt=\"Screenshot of malicious Excel file used in Zloader campaign\" width=\"624\" height=\"328\" srcset=\"https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig5-Malicious-Excel-file-Zloader-campaign.png 624w, https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig5-Malicious-Excel-file-Zloader-campaign-300x158.png 300w\" sizes=\"auto, (max-width: 624px) 100vw, 624px\"><\/p>\n<p><em>Figure 5. Malicious Excel file used in Zloader campaign<\/em><\/p>\n<p>A closer look at the document reveals an Excel sheet with an obscure-looking name. That sheet embeds XLM macro formulas, which are stored several rows down to make the sheet look empty. Furthermore, the macro formulas are spread out and obfuscated, hindering static analysis and raising more challenges for identifying intent.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-93014\" src=\"https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig6-Malicious-XLM-macro-Zloader.png\" alt=\"Screenshot of XLM macro used in Zloader campaign\" width=\"338\" height=\"448\" srcset=\"https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig6-Malicious-XLM-macro-Zloader.png 338w, https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig6-Malicious-XLM-macro-Zloader-226x300.png 226w\" sizes=\"auto, (max-width: 338px) 100vw, 338px\"><\/p>\n<p><em>Figure 6. Malicious XLM macro used in ZLoader campaign<\/em><\/p>\n<p>Executing and debugging the macro with Excel is not very straightforward either. The macro has long loops that are used to decode and run further obfuscated macro formulas, and the Excel\u2019s debugger doesn\u2019t have the ability to control the execution in a granular way in order to skip loops and break on specific formulas.<\/p>\n<p>However, when this macro runs with the AMSI instrumentation enabled, it produces up to three different logs that are passed to AMSI. The first two look like the following:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-93015\" src=\"https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig7-Log-Zloader.png\" alt=\"Screenshot of log produced when XLM macro used in Zloader campaign is run\" width=\"549\" height=\"212\" srcset=\"https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig7-Log-Zloader.png 549w, https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig7-Log-Zloader-300x116.png 300w\" sizes=\"auto, (max-width: 549px) 100vw, 549px\"><\/p>\n<p><em>Figure 7. Log produced when ZLoader\u2019s XLM macro is run<\/em><\/p>\n<p>The image only shows the final part of the log where the interesting activity shows up. We can see that the macro is issuing a new <em>EXEC<\/em> statement to run a .vbs file via <em>explorer.exe<\/em>. This <em>EXEC<\/em> statement causes the execution of the VBScript named <em>EW2H.vbs<\/em>, which has been decoded and saved to disk by the macro prior to the <em>EXEC<\/em> line. The VBScript then tries to download and run a binary payload. The macro attempts to do this twice, hence this log (with minor variations) is passed to AMSI twice.<\/p>\n<p>If the above steps fail, the macro resorts to downloading the payload directly, producing the following log for AMSI:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-93016\" src=\"https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig8-Log-produced-ZLoader.png\" alt=\"Screenshot of log produced when XLM macro used in Zloader campaign is run\" width=\"624\" height=\"144\" srcset=\"https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig8-Log-produced-ZLoader.png 624w, https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig8-Log-produced-ZLoader-300x69.png 300w\" sizes=\"auto, (max-width: 624px) 100vw, 624px\"><\/p>\n<p><em>Figure 8. Log produced when ZLoader\u2019s XLM macro is run<\/em><\/p>\n<p>The macro defines two URLs, then downloads their content with the API <em>URLDownloadToFileA<\/em>, and finally invokes the API <em>ShellExecuteA<\/em> to launch the downloaded payload (the file <em>jxi09.txt<\/em>) via <em>rundll32.exe<\/em>. We can infer from this line that the payload is a DLL.<\/p>\n<p>All three logs offer plenty of opportunities to detect malicious behavior and also allow the easy extraction of relevant IOCs like URLs, file names, etc. The initial XLM code in the Excel document is completely obfuscated and contains no usable information, making it tricky to issue static detections that are both effective and durable. With the dynamic nature of AMSI, the runtime behavior can be observed in cleartext, even with obfuscation. Detections based on the logs passed to AMSI also have the advantage of being more robust and generic in nature.<\/p>\n<h2>Availability<\/h2>\n<p>Runtime inspection of XLM macros is now available in Microsoft Excel and can be used by antivirus solutions like Microsoft Defender Antivirus that are registered as an AMSI provider on the device. This feature is included as an addition to the existing AMSI integration with Office. It\u2019s enabled by default on the February Current Channel and Monthly Enterprise Channel for Microsoft 365 subscription users.<\/p>\n<p>In its default configuration, XLM macros are scanned at runtime via AMSI, except in the following scenarios:<\/p>\n<p>Administrators can now use the existing Microsoft 365 applications policy control to configure when both XLM and VBA macros are scanned at runtime via AMSI. Get the <a href=\"https:\/\/www.microsoft.com\/en-us\/download\/details.aspx?id=49030\">latest group policy template files<\/a>.<\/p>\n<table border=\"1\">\n<tbody>\n<tr>\n<td width=\"139\"><strong>Group Policy setting name<\/strong><\/td>\n<td width=\"485\">Macro Runtime Scan Scope<\/td>\n<\/tr>\n<tr>\n<td width=\"139\"><strong>Path<\/strong><\/td>\n<td width=\"485\">User Configuration &gt; Administrative templates &gt; Microsoft Office 2016 &gt; Security Settings<\/td>\n<\/tr>\n<tr>\n<td width=\"139\"><\/td>\n<td width=\"485\">This policy setting specifies the behavior for both the VBA and Excel 4.0 (XLM) runtime scan features. Multiple Office apps support VBA macros, but XLM macros are only supported by Excel. Macros can only be scanned if the antivirus software registers as an Antimalware Scan Interface (AMSI) provider on the device.<\/p>\n<p>If you enable this policy setting, you can choose from the following options to determine the macro runtime scanning behavior:<\/p>\n<p><strong>Disable for all files (not recommended):<\/strong> If you choose this option, no runtime scanning of enabled macros will be performed.<\/p>\n<p><strong>Enable for low trust files:<\/strong> If you choose this option, runtime scanning will be enabled for all files for which macros are enabled, except for the following files:<\/p>\n<ul>\n<li>Files opened while macro security settings are set to \u201cEnable all macros\u201d<\/li>\n<li>Files opened from a trusted location<\/li>\n<li>Files that are Trusted Documents<\/li>\n<li>Files that contain VBA that is digitally signed by a trusted publisher<\/li>\n<\/ul>\n<p><strong>Enable for all files:<\/strong> If you choose this option, then low trust files are not excluded from runtime scanning. The VBA and XLM runtimes report to an antivirus system certain high-risk code behaviors the macro is about to execute. This allows the antivirus system to indicate whether or not the macro behavior is malicious. If the behavior is determined to be malicious, the Office application closes the session and the antivirus system can quarantine the file. If the behavior is non-malicious, the macro execution proceeds.<\/p>\n<p>Note: When macro runtime scanning is enabled, the runtime performance of affected VBA projects and XLM sheets may be reduced.<\/p>\n<p>If you disable this policy setting, no runtime scanning of enabled macros will be performed.<\/p>\n<p>If you don\u2019t configure this policy setting, \u201cEnable for low trust files\u201d will be the default setting.<\/p>\n<p>Note: This policy setting only applies to subscription versions of Office, such as Microsoft 365 Apps for enterprise.<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>AMSI improves security for all<\/h2>\n<p>AMSI provides deep and dynamic visibility into the runtime behaviors of macros and other scripts to expose threats that hide malicious intent behind obfuscation, junk control flow statements, and many other tricks. Microsoft Defender Antivirus, the built-in antivirus solution on Windows 10, has been leveraging AMSI to uncover a wide range of threats, from common malware to sophisticated attacks. The recent AMSI instrumentation in XLM directly tackles the rise of malware campaigns that abuse this feature. Because AMSI is an open interface, other antivirus solutions can leverage the same visibility to improve protections against threats. Security vendors can learn how to leverage AMSI in their antivirus products <a href=\"https:\/\/docs.microsoft.com\/en-us\/windows\/win32\/api\/amsi\/nn-amsi-iantimalwareprovider\">here<\/a>.<\/p>\n<p>At Microsoft, we take full advantage of signals from AMSI. The data generated by AMSI is not only useful for immediate client antimalware detections, but also provides rich signals for Microsoft Defender for Endpoint. In our blog post about <a href=\"https:\/\/www.microsoft.com\/security\/blog\/2018\/09\/12\/office-vba-amsi-parting-the-veil-on-malicious-macros\/\">AMSI for VBA<\/a>, we described how these signals are ingested by multiple layers of cloud-based machine learning classifiers and are combined with all other signals. The result is an enhanced protection layer that learns to recognize and block new and unknown threats in real-time.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-93017\" src=\"https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig9-AMSI-Microsoft-Defender-Antivirus-detection.png\" alt width=\"400\" height=\"302\" srcset=\"https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig9-AMSI-Microsoft-Defender-Antivirus-detection.png 786w, https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig9-AMSI-Microsoft-Defender-Antivirus-detection-300x226.png 300w, https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig9-AMSI-Microsoft-Defender-Antivirus-detection-768x579.png 768w\" sizes=\"auto, (max-width: 400px) 100vw, 400px\"><\/p>\n<p><em>Figure 9. Example of detection from Microsoft Defender Antivirus based on data inspected by AMSI<\/em><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-93018\" src=\"https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig10-Notification-Microsoft-Defender-Antivirus-AMSI.png\" alt width=\"400\" height=\"272\" srcset=\"https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig10-Notification-Microsoft-Defender-Antivirus-AMSI.png 306w, https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig10-Notification-Microsoft-Defender-Antivirus-AMSI-300x204.png 300w\" sizes=\"auto, (max-width: 400px) 100vw, 400px\"><\/p>\n<p><em>Figure 10: Notification from Microsoft Excel after AMSI reported malware detection<\/em><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-93019\" src=\"https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig11-Microsoft-Defender-for-Endpoint-alert-AMSI.png\" alt width=\"1100\" height=\"419\" srcset=\"https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig11-Microsoft-Defender-for-Endpoint-alert-AMSI.png 1100w, https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig11-Microsoft-Defender-for-Endpoint-alert-AMSI-300x114.png 300w, https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig11-Microsoft-Defender-for-Endpoint-alert-AMSI-1024x390.png 1024w, https:\/\/www.microsoft.com\/security\/blog\/wp-content\/uploads\/2021\/03\/Fig11-Microsoft-Defender-for-Endpoint-alert-AMSI-768x293.png 768w\" sizes=\"auto, (max-width: 1100px) 100vw, 1100px\"><\/p>\n<p><em>Figure 11: Example of Microsoft Defender for Endpoint alert for detection of XLM malware <\/em><\/p>\n<p>The visibility provided by AMSI leads to significant improvements in generic and resilient signatures that can stop waves of obfuscated and mutated variants of threats. AMSI-driven protection adds to an extensive multi-layer protection stack in <a href=\"https:\/\/www.microsoft.com\/en-us\/microsoft-365\/security\/endpoint-defender\">Microsoft Defender for Endpoint<\/a>, which also includes attack surface reduction, <a href=\"https:\/\/docs.microsoft.com\/en-us\/windows\/security\/threat-protection\/microsoft-defender-atp\/enable-network-protection\">network protection<\/a>, behavior monitoring and other technologies that protect against macro malware and other similar script-based threats.<\/p>\n<p>The AMSI-enriched visibility provided by Microsoft Defender for Endpoint is further amplified across <a href=\"https:\/\/aka.ms\/m365d\">Microsoft 365 Defender<\/a>, such that XLM macro threats are detected and blocked on various entry vectors. The orchestration of signal-sharing and coordinated defense in Microsoft 365 ensures that, for example, <a href=\"https:\/\/www.microsoft.com\/en-us\/microsoft-365\/security\/office-365-defender\">Microsoft Defender for Office 365<\/a> blocks macro malware distributed via email, which is the most common delivery methods for these threats.<\/p>\n<p><a href=\"https:\/\/www.microsoft.com\/en-us\/microsoft-365\/security\/microsoft-365-defender\">Learn how you can stop attacks through automated, cross-domain security and built-in AI with Microsoft Defender 365<\/a>.<\/p>\n<p><strong><em>Giulia Biagini<\/em><\/strong><em>, Office 365 Threat Research Team<\/em><\/p>\n<p><strong><em>Auston Wallace<\/em><\/strong><em>, Microsoft 365 Security Team<\/em><\/p>\n<p><strong><em>Andrea Lelli<\/em><\/strong><em>, Microsoft 365 Defender Research Team <\/em><\/p>\n<p> READ MORE <a href=\"https:\/\/www.microsoft.com\/security\/blog\/2021\/03\/03\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware\/\">HERE<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>We have recently expanded the integration of Antimalware Scan Interface (AMSI) with Office 365 to include the runtime scanning of Excel 4.0 (XLM) macros, to help antivirus solutions tackle the increase in attacks that use malicious XLM macros.<br \/>\nThe post XLM + AMSI: New runtime defense against Excel 4.0 macro malware appeared first on Microsoft Security. READ MORE HERE&#8230;<\/p>\n","protected":false},"author":2,"featured_media":39831,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"colormag_page_layout":"default_layout","footnotes":""},"categories":[276],"tags":[3397,347,9241,3398,7221,6578,9242],"class_list":["post-39830","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-microsoft-secure","tag-antimalware-scan-interface-amsi","tag-cybersecurity","tag-excel-4-0","tag-macro-malware","tag-microsoft-security-intelligence","tag-threat-protection","tag-xlm"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>XLM + AMSI: New runtime defense against Excel 4.0 macro malware 2026 | ThreatsHub Cybersecurity News<\/title>\n<meta name=\"description\" content=\"ThreatsHub Cybersecurity News | ThreatsHub.org | Cloud Security &amp; Cyber Threats Analysis Hub. 100% Free OSINT Threat Intelligent and Cybersecurity News.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.threatshub.org\/blog\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"XLM + AMSI: New runtime defense against Excel 4.0 macro malware 2026 | ThreatsHub Cybersecurity News\" \/>\n<meta property=\"og:description\" content=\"ThreatsHub Cybersecurity News | ThreatsHub.org | Cloud Security &amp; Cyber Threats Analysis Hub. 100% Free OSINT Threat Intelligent and Cybersecurity News.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.threatshub.org\/blog\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware\/\" \/>\n<meta property=\"og:site_name\" content=\"ThreatsHub Cybersecurity News\" \/>\n<meta property=\"article:published_time\" content=\"2021-03-03T17:00:54+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.threatshub.org\/blog\/coredata\/uploads\/2021\/03\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware.png\" \/>\n\t<meta property=\"og:image:width\" content=\"541\" \/>\n\t<meta property=\"og:image:height\" content=\"269\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"TH Author\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@threatshub\" \/>\n<meta name=\"twitter:site\" content=\"@threatshub\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"TH Author\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"12 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware\\\/\"},\"author\":{\"name\":\"TH Author\",\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/#\\\/schema\\\/person\\\/12e0a8671ff89a863584f193e7062476\"},\"headline\":\"XLM + AMSI: New runtime defense against Excel 4.0 macro malware\",\"datePublished\":\"2021-03-03T17:00:54+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware\\\/\"},\"wordCount\":2350,\"publisher\":{\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware.png\",\"keywords\":[\"Antimalware Scan Interface (AMSI)\",\"Cybersecurity\",\"Excel 4.0\",\"macro malware\",\"Microsoft security intelligence\",\"Threat protection\",\"XLM\"],\"articleSection\":[\"Microsoft Secure\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware\\\/\",\"url\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware\\\/\",\"name\":\"XLM + AMSI: New runtime defense against Excel 4.0 macro malware 2026 | ThreatsHub Cybersecurity News\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware.png\",\"datePublished\":\"2021-03-03T17:00:54+00:00\",\"description\":\"ThreatsHub Cybersecurity News | ThreatsHub.org | Cloud Security & Cyber Threats Analysis Hub. 100% Free OSINT Threat Intelligent and Cybersecurity News.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware.png\",\"contentUrl\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware.png\",\"width\":541,\"height\":269},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Antimalware Scan Interface (AMSI)\",\"item\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/tag\\\/antimalware-scan-interface-amsi\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"XLM + AMSI: New runtime defense against Excel 4.0 macro malware\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/\",\"name\":\"ThreatsHub Cybersecurity News\",\"description\":\"%%focuskw%% Threat Intel \u2013 Threat Intel Services \u2013 CyberIntelligence \u2013 Cyber Threat Intelligence - Threat Intelligence Feeds - Threat Intelligence Reports - CyberSecurity Report \u2013 Cyber Security PDF \u2013 Cybersecurity Trends - Cloud Sandbox \u2013- Threat IntelligencePortal \u2013 Incident Response \u2013 Threat Hunting \u2013 IOC - Yara - Security Operations Center \u2013 SecurityOperation Center \u2013 Security SOC \u2013 SOC Services - Advanced Threat - Threat Detection - TargetedAttack \u2013 APT \u2013 Anti-APT \u2013 Advanced Protection \u2013 Cyber Security Services \u2013 Cybersecurity Services -Threat Intelligence Platform\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/#organization\"},\"alternateName\":\"Threatshub.org\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/#organization\",\"name\":\"ThreatsHub.org\",\"alternateName\":\"Threatshub.org\",\"url\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/Threatshub_Favicon1.jpg\",\"contentUrl\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/Threatshub_Favicon1.jpg\",\"width\":432,\"height\":435,\"caption\":\"ThreatsHub.org\"},\"image\":{\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/x.com\\\/threatshub\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.threatshub.org\\\/blog\\\/#\\\/schema\\\/person\\\/12e0a8671ff89a863584f193e7062476\",\"name\":\"TH Author\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/066276f086d5155df79c850206a779ad368418a844da0182ce43f9cd5b506c3d?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/066276f086d5155df79c850206a779ad368418a844da0182ce43f9cd5b506c3d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/066276f086d5155df79c850206a779ad368418a844da0182ce43f9cd5b506c3d?s=96&d=mm&r=g\",\"caption\":\"TH Author\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"XLM + AMSI: New runtime defense against Excel 4.0 macro malware 2026 | ThreatsHub Cybersecurity News","description":"ThreatsHub Cybersecurity News | ThreatsHub.org | Cloud Security & Cyber Threats Analysis Hub. 100% Free OSINT Threat Intelligent and Cybersecurity News.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.threatshub.org\/blog\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware\/","og_locale":"en_US","og_type":"article","og_title":"XLM + AMSI: New runtime defense against Excel 4.0 macro malware 2026 | ThreatsHub Cybersecurity News","og_description":"ThreatsHub Cybersecurity News | ThreatsHub.org | Cloud Security & Cyber Threats Analysis Hub. 100% Free OSINT Threat Intelligent and Cybersecurity News.","og_url":"https:\/\/www.threatshub.org\/blog\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware\/","og_site_name":"ThreatsHub Cybersecurity News","article_published_time":"2021-03-03T17:00:54+00:00","og_image":[{"width":541,"height":269,"url":"https:\/\/www.threatshub.org\/blog\/coredata\/uploads\/2021\/03\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware.png","type":"image\/png"}],"author":"TH Author","twitter_card":"summary_large_image","twitter_creator":"@threatshub","twitter_site":"@threatshub","twitter_misc":{"Written by":"TH Author","Est. reading time":"12 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.threatshub.org\/blog\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware\/#article","isPartOf":{"@id":"https:\/\/www.threatshub.org\/blog\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware\/"},"author":{"name":"TH Author","@id":"https:\/\/www.threatshub.org\/blog\/#\/schema\/person\/12e0a8671ff89a863584f193e7062476"},"headline":"XLM + AMSI: New runtime defense against Excel 4.0 macro malware","datePublished":"2021-03-03T17:00:54+00:00","mainEntityOfPage":{"@id":"https:\/\/www.threatshub.org\/blog\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware\/"},"wordCount":2350,"publisher":{"@id":"https:\/\/www.threatshub.org\/blog\/#organization"},"image":{"@id":"https:\/\/www.threatshub.org\/blog\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware\/#primaryimage"},"thumbnailUrl":"https:\/\/www.threatshub.org\/blog\/coredata\/uploads\/2021\/03\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware.png","keywords":["Antimalware Scan Interface (AMSI)","Cybersecurity","Excel 4.0","macro malware","Microsoft security intelligence","Threat protection","XLM"],"articleSection":["Microsoft Secure"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.threatshub.org\/blog\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware\/","url":"https:\/\/www.threatshub.org\/blog\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware\/","name":"XLM + AMSI: New runtime defense against Excel 4.0 macro malware 2026 | ThreatsHub Cybersecurity News","isPartOf":{"@id":"https:\/\/www.threatshub.org\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.threatshub.org\/blog\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware\/#primaryimage"},"image":{"@id":"https:\/\/www.threatshub.org\/blog\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware\/#primaryimage"},"thumbnailUrl":"https:\/\/www.threatshub.org\/blog\/coredata\/uploads\/2021\/03\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware.png","datePublished":"2021-03-03T17:00:54+00:00","description":"ThreatsHub Cybersecurity News | ThreatsHub.org | Cloud Security & Cyber Threats Analysis Hub. 100% Free OSINT Threat Intelligent and Cybersecurity News.","breadcrumb":{"@id":"https:\/\/www.threatshub.org\/blog\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.threatshub.org\/blog\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.threatshub.org\/blog\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware\/#primaryimage","url":"https:\/\/www.threatshub.org\/blog\/coredata\/uploads\/2021\/03\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware.png","contentUrl":"https:\/\/www.threatshub.org\/blog\/coredata\/uploads\/2021\/03\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware.png","width":541,"height":269},{"@type":"BreadcrumbList","@id":"https:\/\/www.threatshub.org\/blog\/xlm-amsi-new-runtime-defense-against-excel-4-0-macro-malware\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.threatshub.org\/blog\/"},{"@type":"ListItem","position":2,"name":"Antimalware Scan Interface (AMSI)","item":"https:\/\/www.threatshub.org\/blog\/tag\/antimalware-scan-interface-amsi\/"},{"@type":"ListItem","position":3,"name":"XLM + AMSI: New runtime defense against Excel 4.0 macro malware"}]},{"@type":"WebSite","@id":"https:\/\/www.threatshub.org\/blog\/#website","url":"https:\/\/www.threatshub.org\/blog\/","name":"ThreatsHub Cybersecurity News","description":"%%focuskw%% Threat Intel \u2013 Threat Intel Services \u2013 CyberIntelligence \u2013 Cyber Threat Intelligence - Threat Intelligence Feeds - Threat Intelligence Reports - CyberSecurity Report \u2013 Cyber Security PDF \u2013 Cybersecurity Trends - Cloud Sandbox \u2013- Threat IntelligencePortal \u2013 Incident Response \u2013 Threat Hunting \u2013 IOC - Yara - Security Operations Center \u2013 SecurityOperation Center \u2013 Security SOC \u2013 SOC Services - Advanced Threat - Threat Detection - TargetedAttack \u2013 APT \u2013 Anti-APT \u2013 Advanced Protection \u2013 Cyber Security Services \u2013 Cybersecurity Services -Threat Intelligence Platform","publisher":{"@id":"https:\/\/www.threatshub.org\/blog\/#organization"},"alternateName":"Threatshub.org","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.threatshub.org\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.threatshub.org\/blog\/#organization","name":"ThreatsHub.org","alternateName":"Threatshub.org","url":"https:\/\/www.threatshub.org\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.threatshub.org\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.threatshub.org\/blog\/coredata\/uploads\/2025\/05\/Threatshub_Favicon1.jpg","contentUrl":"https:\/\/www.threatshub.org\/blog\/coredata\/uploads\/2025\/05\/Threatshub_Favicon1.jpg","width":432,"height":435,"caption":"ThreatsHub.org"},"image":{"@id":"https:\/\/www.threatshub.org\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/threatshub"]},{"@type":"Person","@id":"https:\/\/www.threatshub.org\/blog\/#\/schema\/person\/12e0a8671ff89a863584f193e7062476","name":"TH Author","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/066276f086d5155df79c850206a779ad368418a844da0182ce43f9cd5b506c3d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/066276f086d5155df79c850206a779ad368418a844da0182ce43f9cd5b506c3d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/066276f086d5155df79c850206a779ad368418a844da0182ce43f9cd5b506c3d?s=96&d=mm&r=g","caption":"TH Author"}}]}},"_links":{"self":[{"href":"https:\/\/www.threatshub.org\/blog\/wp-json\/wp\/v2\/posts\/39830","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.threatshub.org\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.threatshub.org\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.threatshub.org\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.threatshub.org\/blog\/wp-json\/wp\/v2\/comments?post=39830"}],"version-history":[{"count":0,"href":"https:\/\/www.threatshub.org\/blog\/wp-json\/wp\/v2\/posts\/39830\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.threatshub.org\/blog\/wp-json\/wp\/v2\/media\/39831"}],"wp:attachment":[{"href":"https:\/\/www.threatshub.org\/blog\/wp-json\/wp\/v2\/media?parent=39830"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.threatshub.org\/blog\/wp-json\/wp\/v2\/categories?post=39830"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.threatshub.org\/blog\/wp-json\/wp\/v2\/tags?post=39830"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}