Skip to content

Commit

Permalink
Merge branch 'develop' into patch-27
Browse files Browse the repository at this point in the history
  • Loading branch information
tclahr authored Jan 14, 2025
2 parents 0eb7b2b + b2eff19 commit 8f26127
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/shellcheck.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- develop
- main
paths:
- 'bin/**/*.sh'
- 'lib/**'
- 'uac'

Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,13 @@
- files/system/kactivitymanagerd.yaml: Added collection of activity tracking data used by KActivityManager (part of KDE) to track and manage user activities, such as recently opened files, applications, and other resources [freebsd, linux, netbsd, openbsd].
- files/system/upstart.yaml: Added collection of system-wide and user-session Upstart configuration files [linux].
- files/system/xdg_autostart.yaml: Added collection of system-wide and user-specific XDG autostart files [linux].
- live_response/packages/0install.yaml: Added collection of the list of installed packages managed by Zero Install package manager [linux] (by [Pierre-Gronau-ndaal](https://github.com/Pierre-Gronau-ndaal)).
- live_response/packages/conary.yaml: Added collection of the list of installed packages managed by the Conary package manager [linux] (by [Pierre-Gronau-ndaal](https://github.com/Pierre-Gronau-ndaal)).
- live_response/packages/dpkg.yaml: Updated to verify all packages to compare information about the installed files in the package with information about the files taken from the package metadata stored in the dpkg database [linux] ([mnrkbys](https://github.com/mnrkbys)).
- live_response/packages/package_owns_file.yaml: Added collection of which installed package owns a specific file or command. Note that this artifact is resource-intensive and time-consuming to execute, so it is disabled by default in all profiles [linux] ([mnrkbys](https://github.com/mnrkbys)).
- live_response/packages/paludis.yaml: Added collection of the list of installed packages managed by the Paludis package manager [linux] (by [Pierre-Gronau-ndaal](https://github.com/Pierre-Gronau-ndaal)).
- live_response/packages/portage.yaml: Added the collection of installed package lists using the Portage package management system [linux] (by [Pierre-Gronau-ndaal](https://github.com/Pierre-Gronau-ndaal)).
- live_response/packages/snap.yaml: Updated collection to display installed packages including all revisions [linux] (by [Pierre-Gronau-ndaal](https://github.com/Pierre-Gronau-ndaal)).
- live_response/storage/findmnt.yaml: Added JSON output format for listing all mounted file systems [linux] ([mnrkbys](https://github.com/mnrkbys)).
- live_response/storage/lsblk.yaml: Added JSON output format for listing block devices [linux] ([mnrkbys](https://github.com/mnrkbys)).
- live_response/system/coredump.yaml: Added collection of core dump files information [linux] ([mnrkbys](https://github.com/mnrkbys)).
Expand Down
4 changes: 2 additions & 2 deletions artifacts/files/shell/history.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
version: 3.0
version: 4.0
artifacts:
-
description: Collect shell history files.
supported_os: [all]
collector: file
path: /%user_home%
# lesshst: less command history file
name_pattern: [".*_history", ".*history", "*.historynew", ".lesshst", ".zhistory", "fish_history"]
name_pattern: [".*_history", ".*history", ".cosh_history", ".dash_history", ".esh_history", ".lesshst", ".nash_history", ".sash_history", ".scsh_history", ".xonsh_history", ".zhistory", "*.historynew", "fish_history"]
max_depth: 4
10 changes: 10 additions & 0 deletions artifacts/live_response/packages/0install.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: 1.0
condition: command_exists "0install"
output_directory: /live_response/packages
artifacts:
-
description: Display installed packages.
supported_os: [linux]
collector: command
command: 0install list
output_file: 0install_list.txt
7 changes: 6 additions & 1 deletion artifacts/live_response/packages/snap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,9 @@ artifacts:
collector: command
command: snap list
output_file: snap_list.txt

-
description: Display installed Snap packages including all revisions.
supported_os: [linux]
collector: command
command: snap list --all
output_file: snap_list_--all.txt

0 comments on commit 8f26127

Please sign in to comment.