閉める
閉める
明日に向けたネットワーク
明日に向けたネットワーク
サポートするアプリケーションとユーザー向けに設計された、より高速で、より安全で、回復力のあるネットワークへの道を計画します。
          Netskopeを体験しませんか?
          Get Hands-on With the Netskope Platform
          Here's your chance to experience the Netskope One single-cloud platform first-hand. Sign up for self-paced, hands-on labs, join us for monthly live product demos, take a free test drive of Netskope Private Access, or join us for a live, instructor-led workshops.
            SSEのリーダー。 現在、シングルベンダーSASEのリーダーです。
            SSEのリーダー。 現在、シングルベンダーSASEのリーダーです。
            Netskope、2024年Gartner®社のシングルベンダーSASEのマジック・クアドラントでリーダーの1社の位置付けと評価された理由をご確認ください。
              ダミーのためのジェネレーティブAIの保護
              ダミーのためのジェネレーティブAIの保護
              Learn how your organization can balance the innovative potential of generative AI with robust data security practices.
                Modern data loss prevention (DLP) for Dummies eBook
                最新の情報漏えい対策(DLP)for Dummies
                Get tips and tricks for transitioning to a cloud-delivered DLP.
                  SASEダミーのための最新のSD-WAN ブック
                  Modern SD-WAN for SASE Dummies
                  遊ぶのをやめる ネットワークアーキテクチャに追いつく
                    リスクがどこにあるかを理解する
                    Advanced Analytics transforms the way security operations teams apply data-driven insights to implement better policies. With Advanced Analytics, you can identify trends, zero in on areas of concern and use the data to take action.
                        レガシーVPNを完全に置き換えるための6つの最も説得力のあるユースケース
                        レガシーVPNを完全に置き換えるための6つの最も説得力のあるユースケース
                        Netskope One Private Access is the only solution that allows you to retire your VPN for good.
                          Colgate-Palmoliveは、スマートで適応性のあるデータ保護により「知的財産」を保護します
                          Colgate-Palmoliveは、スマートで適応性のあるデータ保護により「知的財産」を保護します
                            Netskope GovCloud
                            NetskopeがFedRAMPの高認証を達成
                            政府機関の変革を加速するには、Netskope GovCloud を選択してください。
                              Let's Do Great Things Together
                              Netskopeのパートナー中心の市場開拓戦略により、パートナーは企業のセキュリティを変革しながら、成長と収益性を最大化できます。
                                Netskopeソリューション
                                Netskope Cloud Exchange
                                Netskope Cloud Exchange (CE) provides customers with powerful integration tools to leverage investments across their security posture.
                                  Netskopeテクニカルサポート
                                  Netskopeテクニカルサポート
                                  クラウドセキュリティ、ネットワーキング、仮想化、コンテンツ配信、ソフトウェア開発など、多様なバックグラウンドを持つ全世界にいる有資格のサポートエンジニアが、タイムリーで質の高い技術支援を行っています。
                                    Netskopeの動画
                                    Netskopeトレーニング
                                    Netskopeのトレーニングは、クラウドセキュリティのエキスパートになるためのステップアップに活用できます。Netskopeは、お客様のデジタルトランスフォーメーションの取り組みにおける安全確保、そしてクラウド、Web、プライベートアプリケーションを最大限に活用するためのお手伝いをいたします。

                                      Malicious Office Documents: Multiple Ways to Deliver Payloads

                                      Nov 19 2021

                                      Co-authored by Gustavo Palazolo and Ghanashyam Satpathy

                                      Summary

                                      Several malware families are distributed via Microsoft Office documents infected with malicious VBA code, such as Emotet, IceID, Dridex, and BazarLoader. We have also seen many techniques employed by attackers when it comes to infected documents, such as the usage of PowerShell and WMI to evade signature-based threat detection. In this blog post, we will show three additional techniques attackers use to craft malicious Office documents.

                                      Technique 01: VBA Code Executing Shellcode via Process Injection

                                      The first technique involves a malicious VBA script that is used to execute a shellcode, which eventually leads to the deployment of other malware.

                                      The VBA code is automatically executed with the “AutoOpen” feature, and from extracted macro code, we can see references to Windows APIs that are often used for process injection.

                                      Screenshot of Windows APIs used by the VBA code.
                                      Windows APIs used by the VBA code.

                                      Going further, we can find a large array with integers, which are all the bytes of the shellcode.

                                      Example of shellcode bytes within an array.
                                      Shellcode bytes within an array.

                                      And finally, we have the code that is responsible for executing the shellcode.

                                      In this case, the code will be injected into “rundll32.exe” through a popular technique:

                                      1. A “rundll32.exe” process is created with CreateProcessA, named “RunStuff”;
                                      2. The code allocates a memory space in the process with VirtualAllocEx, named “AllocStuff”;
                                      3. The shellcode is written into the newly allocated space with WriteProcessMemory, named “WriteStuff”.
                                      4. Lastly, the shellcode is executed through CreateRemoteThread, named “CreateStuff”.

                                      Once the shellcode is running, it contacts a malicious server to download the next stage, which can be any additional malware the attacker desires.

                                      Screenshot of Shellcode executed through the infected document.
                                      Shellcode executed through the infected document.

                                      Technique 02: VBA Code Abusing Certutil

                                      This one is a bit more interesting than the first one, as the malicious VBA code is using a Living-off-the-Land technique to carry out the attack.

                                      After extracting the macro, we can see that the malware uses the “AutoOpen” feature to execute two functions, respectively “DropThyself” and “EstablishThyself”.

                                      Screenshot of Functions executed once the document is opened.
                                      Functions executed once the document is opened.

                                      The first called function creates a file named “GoogleUpdater.crt” and writes a large base64 content in the certificate format.

                                      Screenshot of Function dropping the fake certificate in the disk.
                                      Function dropping the fake certificate in the disk.

                                      The file is a base64 encoded executable, which is the second stage of the malware. The content is decoded through a Living-off-the-Land technique using the “certutil.exe” binary.

                                      This is the same technique that was used by the REvil ransomware in the Kaseya attack, where the attacker claimed to have infected more than one million devices around the world.

                                      Screenshot of Payload being decoded through “certutil.exe”
                                      Payload being decoded through “certutil.exe”

                                      After the second stage is decoded, the VBA function “EstablishThyself” creates a simple persistence through Windows registry.

                                      Screenshot of Second-stage executed through simple persistence technique
                                      Second-stage executed through simple persistence technique

                                      In this case, the payload is an agent from a .NET Command & Control framework named Covenant. The file is packed and once running, the entry point executes a shellcode through VirtualAlloc, VirtualProtect, and CreateThread APIs.

                                      Screenshot of Shellcode allocated and executed.
                                      Shellcode allocated and executed.

                                      The shellcode then unpacks the final stage.

                                      Example of Payload being unpacked.
                                      Payload being unpacked.

                                      Since Covenant is developed in .NET, we can decompile the binary to extract additional information about the agent.

                                      Screenshot of Final payload decompiled.
                                      Final payload decompiled.

                                      Technique 03: VBA Code Executing Shellcode via PowerShell

                                      This technique is similar to the first one, however, the shellcode is executed through obfuscated PowerShell.

                                      And again we see the “AutoOpen” feature of VBA Macro being used. At the beginning of the code, we see a large string being concatenated, likely to evade detection.

                                      Screenshot of PowerShell script executed by the macro.
                                      PowerShell script executed by the macro.

                                      Later, the script is executed through a shell object, where the VBA code also uses concatenation in its strings:

                                      Screenshot of PowerShell being executed by the code.
                                      PowerShell being executed by the code.

                                      After running the script, the macro shows a fake error message to deceive the victim.

                                      Screenshot of VBA code displaying a fake message and exiting.
                                      VBA code displaying a fake message and exiting.

                                      The main PowerShell script is encoded with base64, and once we decode it, it’s possible to see APIs related to process injection and a large array of bytes, similar to the first technique.

                                      Screenshot of PowerShell script to inject shellcode.
                                      PowerShell script to inject shellcode.

                                      The shellcode is also very similar to the one found in the first technique.

                                      Screenshot of shellcode execution
                                      Shellcode execution.

                                      Conclusion

                                      We have reviewed three different techniques that are being used by attackers to deliver malware through Microsoft Office documents containing malicious VBA code. It’s interesting to note that despite the differences between them, they are all abusing the “AutoOpen” function within the VBA macros to execute the malware once the document is opened and the user has enabled macros.

                                      The above techniques demonstrate the importance of a strong security solution, as well as security training since these attack vectors can be avoided by not opening unknown attachments, or not enabling macro execution from unknown documents. Moreover, Microsoft has recommended blocking the macro execution through group policy settings by the enterprise administrator in Office 2016 onwards.

                                      Protection

                                      Netskope Threat Labs is actively monitoring infected documents and ensuring coverage for these types of threats.

                                      author image
                                      Gustavo Palazolo
                                      Gustavo Palazolo is an expert in malware analysis, reverse engineering and security research, working many years in projects related to electronic fraud protection.
                                      Gustavo Palazolo is an expert in malware analysis, reverse engineering and security research, working many years in projects related to electronic fraud protection.

                                      Stay informed!

                                      Subscribe for the latest from the Netskope Blog