-
Notifications
You must be signed in to change notification settings - Fork 18
Description
Hi Velocidex,
I'm trying to use SQLiteHunter to parse Microsoft Sticky Notes (see YAML below).
Sticky Notes uses SQLite3, SHM/WAL Transaction and Event Logs. I've not been able to determine from the readme if parsing of these logs is supports but the following definition fails.
Can you clarify if sqlite-shm/sqlite-wal log parsing is supported?
Name: Microsoft Sticky Notes
Author: Christopher Nelmes
Email: Chris.Nelmes@harmonic.ky
Reference: N/A
Description: |
Note SQLiteHunter does not parse SHM and WAL files, therefore only notes that have been commited to the sqlite file will be accessible.
SQLiteIdentifyQuery: |
SELECT count(*) AS Check
FROM sqlite_master
WHERE type='table'
AND name='Note';
SQLiteIdentifyValue: 1
Categories:
- Test
- Windows
FilenameRegex: "plum.sqlite*"
Globs: - "C:/Users//AppData/Local/Packages/Microsoft.MicrosoftStickyNotes_8wekyb3d8bbwe/LocalState/plum.sqlite"
Sources: - name: Notes
VQL: |
SELECT * FROM Rows
SQL: |
SELECT Text, CreatedAt, UpdatedAt from Note
Regards
Christopher Nelmes