Skip to content

Commit

Permalink
Added support for Windows Defender & Microsoft Antimalware MPLogs
Browse files Browse the repository at this point in the history
  • Loading branch information
Silv3rHorn committed Apr 14, 2019
1 parent a8b0aaa commit 498ed16
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
7 changes: 5 additions & 2 deletions artifact_selector.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ def _parse_selection(options):
selection_raw = options.artifact

std_7 = {'reg', 'regb', 'ntuser', 'usrclass', 'evtl', 'setupapi', 'prefetch', 'amcache', 'srum', 'sccm', 'syscache',
'lnk', 'jmp', 'iehist', 'startupinfo', 'pshist', 'timeline'}
std_xp = {'reg', 'regb_xp', 'ntuser', 'usrclass_xp', 'evtl_xp', 'setupapi_xp', 'prefetch', 'lnk_xp', 'iehist_xp'}
'lnk', 'jmp', 'iehist', 'startupinfo', 'pshist', 'timeline', 'defender', 'antimalware'}
std_xp = {'reg', 'regb_xp', 'ntuser', 'usrclass_xp', 'evtl_xp', 'setupapi_xp', 'prefetch', 'lnk_xp', 'iehist_xp',
'defender', 'antimalware'}
all_7 = std_7 | {'recycle', 'mft', 'usnjrnl', 'logfile', 'pagefile'}
all_xp = std_xp | {'recycle_xp', 'mft', 'usnjrnl', 'logfile', 'pagefile'}
supported = all_7 | all_xp | {'std', 'std_xp', 'all', 'all_xp'}
Expand Down Expand Up @@ -86,6 +87,8 @@ def get_selection():
'\t iehist_xp \t users\' ie history (Windows XP)\n'
'\t startupinfo \t startupinfo xml files\n'
'\t pshist \t powershell command history\n'
'\t defender \t windows defender mplogs\n'
'\t antimalware \t microsoft antimalware mplogs\n'
'\t timeline \t timeline activity history\n'
'\t recycle \t users\' recycle bin files (Windows 7+) - does not provide owner or original file name\n'
'\t recycle_xp \t users\' recycle bin files (Windows XP) - does not provide owner\n'
Expand Down
3 changes: 3 additions & 0 deletions artifacts.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@

['startupinfo', u'/Windows/System32/wdi/LogFiles/StartupInfo', u'/Autoruns/', False, u'StartupInfo'],

['defender', u'/ProgramData/Microsoft/Windows Defender/Support', u'/Virus Scans/', False, u'MPLog'],
['antimalware', u'/ProgramData/Microsoft/Microsoft Antimalware/Support', u'/Virus Scans/', False, u'MPLog'],

['recycle', u'/$Recycle.Bin', u'/Recycle/', True, None],
['recycle_xp', u'/RECYCLER', u'/Recycle/', True, None]
]
Expand Down

0 comments on commit 498ed16

Please sign in to comment.