Commit 203c40afc57b41c2a08a2a3df2c8a549e295ea38
1 parent
02057ccf
mraptor: added SetTimer
Showing
1 changed file
with
3 additions
and
2 deletions
oletools/mraptor.py
| @@ -59,8 +59,9 @@ http://www.decalage.info/python/oletools | @@ -59,8 +59,9 @@ http://www.decalage.info/python/oletools | ||
| 59 | # 2017-03-08 PL: - fixed absolute imports | 59 | # 2017-03-08 PL: - fixed absolute imports |
| 60 | # 2018-05-25 v0.53 PL: - added Word/PowerPoint 2007+ XML (aka Flat OPC) issue #283 | 60 | # 2018-05-25 v0.53 PL: - added Word/PowerPoint 2007+ XML (aka Flat OPC) issue #283 |
| 61 | # 2019-04-04 v0.54 PL: - added ExecuteExcel4Macro, ShellExecuteA, XLM keywords | 61 | # 2019-04-04 v0.54 PL: - added ExecuteExcel4Macro, ShellExecuteA, XLM keywords |
| 62 | +# 2019-11-06 v0.55 PL: - added SetTimer | ||
| 62 | 63 | ||
| 63 | -__version__ = '0.54' | 64 | +__version__ = '0.55.dev5' |
| 64 | 65 | ||
| 65 | #------------------------------------------------------------------------------ | 66 | #------------------------------------------------------------------------------ |
| 66 | # TODO: | 67 | # TODO: |
| @@ -134,7 +135,7 @@ re_write = re.compile(r'(?i)\b(?:FileCopy|CopyFile|Kill|CreateTextFile|' | @@ -134,7 +135,7 @@ re_write = re.compile(r'(?i)\b(?:FileCopy|CopyFile|Kill|CreateTextFile|' | ||
| 134 | RE_DECLARE_LIB = r'(?:\bDeclare\b[^\n]+\bLib\b)' | 135 | RE_DECLARE_LIB = r'(?:\bDeclare\b[^\n]+\bLib\b)' |
| 135 | 136 | ||
| 136 | re_execute = re.compile(r'(?i)\b(?:Shell|CreateObject|GetObject|SendKeys|' | 137 | re_execute = re.compile(r'(?i)\b(?:Shell|CreateObject|GetObject|SendKeys|' |
| 137 | - + r'MacScript|FollowHyperlink|CreateThread|ShellExecuteA?|ExecuteExcel4Macro|EXEC|REGISTER)\b|' + RE_DECLARE_LIB) | 138 | + + r'MacScript|FollowHyperlink|CreateThread|ShellExecuteA?|ExecuteExcel4Macro|EXEC|REGISTER|SetTimer)\b|' + RE_DECLARE_LIB) |
| 138 | 139 | ||
| 139 | 140 | ||
| 140 | # === CLASSES ================================================================= | 141 | # === CLASSES ================================================================= |