> For the complete documentation index, see [llms.txt](https://dmcxblue.gitbook.io/red-team-notes/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dmcxblue.gitbook.io/red-team-notes/detection/execution/mshta-detection.md).

# MSHTA (Detection)

MSHTA a powerful tool to get our code Executed, compatible with JScript and VBScript. Some thing to take in consideration is that the HTA Engine is dependent to Internet Explorer since Windows Vista IE can be removed from Windows which will cause the HTA engine to stop working.

HTA has been supported since IE Version 5 to 9. Further versions still support HTA but some minor features have been turned off.

So let's see what happens when we execute an HTA File. Using a simple payload that calls a reverse shell via PowerShell:

Process Hacker:

![](/files/-M7LMhjIa8JA2B26ZxGm)

We see our Parent Process mshta calling a child process powershell, with the Command Line used in execution while using PowerShell.

We see with SYsmon that MSHTA was executed even though we have Double CLicked the Application and following is the PowerShell Command executed:

![](/files/-M7LZd0yHBEP42kLmjT5)

![](/files/-M7LZiSOF8hizA1jYP5o)

And Process Hacker shows us as well that a Network Connection was established:

![](/files/-M7L_SN49WhkLyf2HTpr)

And to finalize what can we see in the Network with WireShark:

![](/files/-M7LbNzfXlX545dOjSLz)

All the commands in Cleat Text being utilized.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://dmcxblue.gitbook.io/red-team-notes/detection/execution/mshta-detection.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
