├── BINARIES ├── FreeBSD11_64 │ └── parse_evtx ├── Linux_32 │ └── parse_evtx ├── Linux_64 │ └── parse_evtx ├── Mingw-w64_32 │ └── parse_evtx.exe ├── Mingw-w64_64 │ └── parse_evtx.exe └── OSX │ └── parse_evtx ├── COPYING.MinGW-w64-runtime.txt ├── COPYING.lgpl-2.1.txt ├── COPYING.parse_evtx.txt ├── README.md └── SOURCES ├── CMakeLists.txt ├── forensics ├── CMakeLists.txt ├── eventlist.h └── main_parse_evtx.cpp ├── tools └── wintime.h └── utils ├── igmacro.h └── win_types.h /BINARIES/FreeBSD11_64/parse_evtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/ForensicsTools/HEAD/BINARIES/FreeBSD11_64/parse_evtx -------------------------------------------------------------------------------- /BINARIES/Linux_32/parse_evtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/ForensicsTools/HEAD/BINARIES/Linux_32/parse_evtx -------------------------------------------------------------------------------- /BINARIES/Linux_64/parse_evtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/ForensicsTools/HEAD/BINARIES/Linux_64/parse_evtx -------------------------------------------------------------------------------- /BINARIES/Mingw-w64_32/parse_evtx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/ForensicsTools/HEAD/BINARIES/Mingw-w64_32/parse_evtx.exe -------------------------------------------------------------------------------- /BINARIES/Mingw-w64_64/parse_evtx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/ForensicsTools/HEAD/BINARIES/Mingw-w64_64/parse_evtx.exe -------------------------------------------------------------------------------- /BINARIES/OSX/parse_evtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/ForensicsTools/HEAD/BINARIES/OSX/parse_evtx -------------------------------------------------------------------------------- /COPYING.MinGW-w64-runtime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/ForensicsTools/HEAD/COPYING.MinGW-w64-runtime.txt -------------------------------------------------------------------------------- /COPYING.lgpl-2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/ForensicsTools/HEAD/COPYING.lgpl-2.1.txt -------------------------------------------------------------------------------- /COPYING.parse_evtx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/ForensicsTools/HEAD/COPYING.parse_evtx.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ForensicsTools 2 | GLHF and HODL! 3 | -------------------------------------------------------------------------------- /SOURCES/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/ForensicsTools/HEAD/SOURCES/CMakeLists.txt -------------------------------------------------------------------------------- /SOURCES/forensics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/ForensicsTools/HEAD/SOURCES/forensics/CMakeLists.txt -------------------------------------------------------------------------------- /SOURCES/forensics/eventlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/ForensicsTools/HEAD/SOURCES/forensics/eventlist.h -------------------------------------------------------------------------------- /SOURCES/forensics/main_parse_evtx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/ForensicsTools/HEAD/SOURCES/forensics/main_parse_evtx.cpp -------------------------------------------------------------------------------- /SOURCES/tools/wintime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/ForensicsTools/HEAD/SOURCES/tools/wintime.h -------------------------------------------------------------------------------- /SOURCES/utils/igmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/ForensicsTools/HEAD/SOURCES/utils/igmacro.h -------------------------------------------------------------------------------- /SOURCES/utils/win_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/ForensicsTools/HEAD/SOURCES/utils/win_types.h --------------------------------------------------------------------------------