forked from log2timeline/plaso
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Code review: 237680043: Issue log2timeline#219 and adding a filter fi…
…le for Windows artifacts
- Loading branch information
1 parent
23991d2
commit 1fb2745
Showing
7 changed files
with
146 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ python-plaso (1.2.1-1) unstable; urgency=low | |
|
||
* Auto-generated | ||
|
||
-- Log2Timeline <[email protected]> Wed, 03 Jun 2015 12:12:02 -0700 | ||
-- Log2Timeline <[email protected]> Wed, 03 Jun 2015 13:12:18 -0700 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
# Filter file for log2timeline for triaging Windows systems. | ||
# | ||
# This file can be used by image_export or log2timeline to selectively export | ||
# few key files of a Windows system. This file will collect: | ||
# * The MFT file, LogFile and the UsnJrnl | ||
# * Contents of the Recycle Bin/Recycler. | ||
# * Windows Registry files, e.g. SYSTEM and NTUSER.DAT. | ||
# * Shortcut (LNK) files from recent files. | ||
# * Jump list files, automatic and custom destination. | ||
# * Windows Event Log files. | ||
# * Prefetch files. | ||
# * SetupAPI file. | ||
# * Application Compatability files, the Recentfilecache and AmCachefile. | ||
# * Windows At job files. | ||
# * Browser history: IE, Firefox and Chrome. | ||
# * Browser cookie files: IE. | ||
# * Flash cookies, or LSO/SOL files from the Flash player. | ||
# | ||
# File system artifacts. | ||
/[$]MFT | ||
/[$]LogFile | ||
/[$]Extend/$UsnJrnl | ||
# Recycle Bin and Recycler. | ||
/[$]Recycle.Bin | ||
/[$]Recycle.Bin/.+ | ||
/[$]Recycle.Bin/.+/.+ | ||
/RECYCLER | ||
/RECYCLER/.+ | ||
/RECYCLER/.+/.+ | ||
# Windows Registry hives. | ||
/(Users|Documents And Settings)/.+/NTUSER[.]DAT | ||
/(Users|Documents And Settings)/.+/AppData/Local/Microsoft/Windows/Usrclass[.]dat | ||
# {sysregistry} points to the location that contains the system hives, | ||
# eg: \Windows\System32\config. | ||
{sysregistry}/(SAM|SOFTWARE|SECURITY|SYSTEM) | ||
# Recent file activity. | ||
/Users/.+/AppData/Roaming/Microsoft/Windows/Recent/.+[.]LNK | ||
/Users/.+/AppData/Roaming/Microsoft/Office/Recent/.+[.]LNK | ||
/Documents And Settings/.+/Recent/.+[.]LNK | ||
/Users/.+/AppData/Roaming/Microsoft/Windows/Recent/Automaticdestinations/.+[.]automaticDestinations-ms | ||
/Users/.+/AppData/Roaming/Microsoft/Windows/Recent/Customdestinations/.+[.].customDestinations-ms | ||
# Windows Event Logs. | ||
{systemroot}/winevt/Logs/.+[.]evtx | ||
{systemroot}/config/.+[.]evt | ||
# Various log files. | ||
{windir}/inf/setupapi[.].+[.]log | ||
{windir}/setupapi.log | ||
{windir}/System32/LogFiles/.+/.+[.]txt | ||
# Windows Artifacts. | ||
{windir}/Tasks/.+[.]job | ||
{windir}/Appcompat/Programs/Recentfilecache[.]bcf | ||
{windir}/Appcompat/Programs/AMcache[.]hve | ||
# Prefetch files. | ||
{windir}/Prefetch/.+[.]pf | ||
# Browser history artifacts. | ||
/Users/.+/AppData/Local/Microsoft/Windows/History/History.IE5/index[.]dat | ||
/Users/.+/AppData/Local/Microsoft/Windows/History/History.IE5/MSHist.+/index[.]dat | ||
/Users/.+/AppData/Local/Microsoft/Windows/History/Low/History.IE5/index[.]dat | ||
/Users/.+/AppData/Local/Microsoft/Windows/History/Low/History.IE5/MSHist.+/index[.]dat | ||
/Users/.+/AppData/Local/Microsoft/Windows/Temporary Internet Files/Content.IE5/index[.]dat | ||
/Users/.+/AppData/Local/Microsoft/Windows/Temporary Internet Files/Low/Content.IE5/index[.]dat | ||
/Users/.+/AppData/Roaming/Microsoft/Windows/Cookies/index[.]dat | ||
/Users/.+/AppData/Roaming/Microsoft/Windows/Cookies/Low/index[.]dat | ||
/Users/.+/AppData/Local/Microsoft/Internet Explorer/Recovery/.+/.+[.]dat | ||
/Users/.+/AppData/Local/Microsoft/Internet Explorer/Recovery/Immersive/.+/.+[.]dat | ||
/Users/.+/AppData/Roaming/Mozilla/Firefox/Profiles/.+/.+[.]sqlite | ||
/Users/.+/AppData/Local/Microsoft/Windows/WebCache/.+[.]dat | ||
/Users/.+/AppData/Local/Google/Chrome/User Data/.+/History | ||
/Users/.+/AppData/Local/Google/Chrome/User Data/.+/Current Session | ||
/Users/.+/AppData/Local/Google/Chrome/User Data/.+/Last Session | ||
/Users/.+/AppData/Local/Google/Chrome/User Data/.+/Current Tabs | ||
/Users/.+/AppData/Local/Google/Chrome/User Data/.+/Last Tabs | ||
/Users/.+/AppData/Roaming/Macromedia/FlashPlayer/#SharedObjects/.+/.+/.+[.]sol | ||
/Documents And Settings/.+/Local Settings/History/History.IE5/index[.]dat | ||
/Documents And Settings/.+/Local Settings/History/History.IE5/MSHist.+/index[.]dat | ||
/Documents And Settings/.+/Local Settings/Temporary Internet Files/Content.IE5/index[.]dat | ||
/Documents And Settings/.+/Cookies/index[.]dat | ||
/Documents And Settings/.+/Application Data/Mozilla/Firefox/Profiles/.+/.+[.]sqlite | ||
/Documents And Settings/.+/Local Settings/Application Data/Google/Chrome/User Data/.+/History | ||
/Documents And Settings/.+/Local Settings/Application Data/Google/Chrome/.+ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters