diff --git a/README.md b/README.md
index e0c5205..55c57f4 100644
--- a/README.md
+++ b/README.md
@@ -22,7 +22,9 @@ Note: python-oletools is not related to OLETools published by BeCubed Software.
News
----
-- **2015-03-23 v0.09**: [olevba](https://bitbucket.org/decalage/oletools/wiki/olevba) now supports Word 2003 XML files,
+- **2015-05-06 v0.10**: [olevba](https://bitbucket.org/decalage/oletools/wiki/olevba) now supports Word MHTML files
+with macros, aka "Single File Web Page" (.mht)
+- 2015-03-23 v0.09: [olevba](https://bitbucket.org/decalage/oletools/wiki/olevba) now supports Word 2003 XML files,
added anti-sandboxing/VM detection
- 2015-02-08 v0.08: [olevba](https://bitbucket.org/decalage/oletools/wiki/olevba) can now decode strings
obfuscated with Hex/StrReverse/Base64/Dridex and extract IOCs. Added new triage mode, support for non-western
diff --git a/oletools/README.html b/oletools/README.html
index 7f47cc0..f6f0f8e 100644
--- a/oletools/README.html
+++ b/oletools/README.html
@@ -4,7 +4,8 @@
Note: python-oletools is not related to OLETools published by BeCubed Software.
News
-- 2015-03-23 v0.09: olevba now supports Word 2003 XML files, added anti-sandboxing/VM detection
+- 2015-05-06 v0.10: olevba now supports Word MHTML files with macros, aka "Single File Web Page" (.mht)
+- 2015-03-23 v0.09: olevba now supports Word 2003 XML files, added anti-sandboxing/VM detection
- 2015-02-08 v0.08: olevba can now decode strings obfuscated with Hex/StrReverse/Base64/Dridex and extract IOCs. Added new triage mode, support for non-western codepages with olefile 0.42, improved API and display, several bugfixes.
- 2015-01-05 v0.07: improved olevba to detect suspicious keywords and IOCs in VBA macros, can now scan several files and open password-protected zip archives, added a Python API, upgraded OleFileIO_PL to olefile v0.41
- 2014-08-28 v0.06: added olevba, a new tool to extract VBA Macro source code from MS Office documents (97-2003 and 2007+). Improved documentation
diff --git a/oletools/README.rst b/oletools/README.rst
index a5614fd..253d5f1 100644
--- a/oletools/README.rst
+++ b/oletools/README.rst
@@ -26,7 +26,11 @@ Software.
News
----
-- **2015-03-23 v0.09**:
+- **2015-05-06 v0.10**:
+ `olevba `__ now
+ supports Word MHTML files with macros, aka "Single File Web Page"
+ (.mht)
+- 2015-03-23 v0.09:
`olevba `__ now
supports Word 2003 XML files, added anti-sandboxing/VM detection
- 2015-02-08 v0.08:
diff --git a/oletools/doc/olevba.html b/oletools/doc/olevba.html
index 09b4a32..5815f7f 100644
--- a/oletools/doc/olevba.html
+++ b/oletools/doc/olevba.html
@@ -16,13 +16,14 @@
Word 97-2003 (.doc, .dot)
Word 2007+ (.docm, .dotm)
Word 2003 XML (.xml)
+Word MHTML Single File Web Page (.mht)
Excel 97-2003 (.xls)
Excel 2007+ (.xlsm, .xlsb)
PowerPoint 2007+ (.pptm, .ppsm)
Main Features
-Detect VBA macros in MS Office 97-2003 and 2007+ files
+Detect VBA macros in MS Office 97-2003 and 2007+ files, XML, MHT
Extract VBA macro source code
Detect auto-executable macros
Detect suspicious VBA keywords often used by malware
@@ -238,6 +239,8 @@ ANALYSIS:
OLE: the file type is OLE, for example MS Office 97-2003
OpX: the file type is OpenXML, for example MS Office 2007+
+XML: the file type is Word 2003 XML
+MHT: the file type is Word MHTML, aka Single File Web Page (.mht)
?: the file type is not supported
M: contains VBA Macros
A: auto-executable macros
diff --git a/oletools/doc/olevba.md b/oletools/doc/olevba.md
index 500448c..eda3e0c 100644
--- a/oletools/doc/olevba.md
+++ b/oletools/doc/olevba.md
@@ -21,13 +21,14 @@ by John William Davison, with significant modifications.
- Word 97-2003 (.doc, .dot)
- Word 2007+ (.docm, .dotm)
- Word 2003 XML (.xml)
+- Word MHTML Single File Web Page (.mht)
- Excel 97-2003 (.xls)
- Excel 2007+ (.xlsm, .xlsb)
- PowerPoint 2007+ (.pptm, .ppsm)
## Main Features
-- Detect VBA macros in MS Office 97-2003 and 2007+ files
+- Detect VBA macros in MS Office 97-2003 and 2007+ files, XML, MHT
- Extract VBA macro source code
- Detect auto-executable macros
- Detect suspicious VBA keywords often used by malware
@@ -200,6 +201,8 @@ The following flags show the results of the analysis:
- **OLE**: the file type is OLE, for example MS Office 97-2003
- **OpX**: the file type is OpenXML, for example MS Office 2007+
+- **XML**: the file type is Word 2003 XML
+- **MHT**: the file type is Word MHTML, aka Single File Web Page (.mht)
- **?**: the file type is not supported
- **M**: contains VBA Macros
- **A**: auto-executable macros