Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions acquire/acquire.py
Original file line number Diff line number Diff line change
Expand Up @@ -896,6 +896,16 @@ class ThumbnailCache(Module):
]


@register_module("--text-editor")
class TextEditor(Module):
DESC = "text editor (un)saved tab contents"
# Only Windows 11 notepad & Notepad++ tabs for now, but locations for other text editors may be added later.
SPEC = [
("dir", "AppData/Local/Packages/Microsoft.WindowsNotepad_8wekyb3d8bbwe/LocalState/TabState/", from_user_home),
("dir", "AppData/Roaming/Notepad++/backup/", from_user_home),
]


@register_module("--misc")
class Misc(Module):
DESC = "miscellaneous Windows artefacts"
Expand Down Expand Up @@ -1917,6 +1927,7 @@ class WindowsProfile:
WindowsNotifications,
SSH,
IIS,
TextEditor,
]


Expand Down