Adding daily.out parsing to Axiom
Recipe Difficulty: Easy
Python Version: 2.7
Operating System: Any
Using the code we just developed to parse macOS daily.out
logs, we add this functionality into Axiom, developed by Magnet Forensics, for the automatic extraction of these events. As Axiom supports the processing of forensic images and loose files, we can either provide it a full acquisition or just an export of the daily.out
log for this example. Through the API made available by this tool, we can access and process files found by its engine and return results for review directly within Axiom.
Getting started
The Magnet Forensics team developed an API for both Python and XML to add support for creating custom artifacts within Axiom. The Python API, at of the writing of this book, is only available through IronPython
running Python version 2.7. While we have developed our code outside of this platform, we can easily integrate it into Axiom following the steps laid out in this recipe. We used Axiom...