Skip to content

Commit 5bac393

Browse files
authored
Merge pull request #347 from tclahr/new_artifacts
new nmcli.yaml artifact
2 parents 13728a6 + a9a67d7 commit 5bac393

File tree

4 files changed

+47
-3
lines changed

4 files changed

+47
-3
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ All notable changes to this project will be documented in this file.
3131
- `files/system/kactivitymanagerd.yaml`: Added collection of activity tracking data from KActivityManager [freebsd, linux, netbsd, openbsd].
3232
- `files/system/upstart.yaml`: Added collection of system-wide and user-session Upstart configuration files [linux].
3333
- `files/system/xdg_autostart.yaml`: Added collection of system-wide and user-specific XDG autostart files [linux].
34+
- `live_response/network/nmcli.yaml`: Added displaying information from network connections managed by NetworkManager [linux].
3435
- `live_response/packages/0install.yaml`: Added collection of installed packages managed by Zero Install [linux]. (by [Pierre-Gronau-ndaal](https://github.com/Pierre-Gronau-ndaal))
3536
- `live_response/packages/apk.yaml`: Added collection of installed packages managed by apk package manager [linux]. (by [Pierre-Gronau-ndaal](https://github.com/Pierre-Gronau-ndaal))
3637
- `live_response/packages/cargo.yaml`: Added collection of installed packages managed by cargo [all]. (by [Pierre-Gronau-ndaal](https://github.com/Pierre-Gronau-ndaal))
@@ -66,6 +67,7 @@ All notable changes to this project will be documented in this file.
6667
- `live_response/packages/swupd.yaml`: Updated to list all available bundles for the current version of Clear Linux [linux]. (by [Pierre-Gronau-ndaal](https://github.com/Pierre-Gronau-ndaal))
6768
- `live_response/process/ps.yaml`: Updated to collect the system date before reporting a snapshot of the current processes including elapsed time since the process was started [all].
6869
- `live_response/system/falconctl.yaml`: Updated as `falconctl -g` is no longer a valid option [linux, macos].
70+
- `memory_dump/avml.yaml`: Updated output file name from avml.raw to avml.lime [linux].
6971

7072
### Fixed
7173

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Whether you're handling an intrusion, conducting forensic investigations, or per
5353
- 🔒 Adheres to the order of volatility to ensure reliable data acquisition.
5454
- 🛠 Designed for diverse environments, including IoT devices and NAS systems.
5555

56-
![UAC in Action](https://tclahr.github.io/uac-docs/img/uac_3_collection.gif)
56+
![UAC in Action](https://tclahr.github.io/uac-docs/img/uac_collection.gif)
5757

5858
## 📘 Documentation
5959

@@ -69,6 +69,7 @@ Full documentation is available at the [project documentation page](https://tcla
6969
- Extract files and directories status to create a bodyfile.
7070
- Collect system and user-specific data, configuration files, and logs.
7171
- Acquire volatile memory from Linux systems using different methods and tools.
72+
- Support to write output to various cloud platforms.
7273

7374
## 💾 Supported Operating Systems
7475

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
version: 1.0
2+
condition: command_exists "nmcli"
3+
output_directory: /live_response/network
4+
artifacts:
5+
-
6+
description: Display network connections managed by NetworkManager.
7+
supported_os: [linux]
8+
collector: command
9+
command: nmcli
10+
output_file: nmcli.txt
11+
-
12+
description: List in-memory and on-disk connection profiles, some of which may also be active if a device is using that connection profile.
13+
supported_os: [linux]
14+
collector: command
15+
command: nmcli connection show
16+
output_file: nmcli_connection_show.txt
17+
-
18+
description: Show detailed information about all devices.
19+
supported_os: [linux]
20+
collector: command
21+
command: nmcli device show
22+
output_file: nmcli_device_show.txt
23+
-
24+
description: Print status of all devices.
25+
supported_os: [linux]
26+
collector: command
27+
command: nmcli device status
28+
output_file: nmcli_device_status.txt
29+
-
30+
description: Show overall status of NetworkManager.
31+
supported_os: [linux]
32+
collector: command
33+
command: nmcli general status
34+
output_file: nmcli_general_status.txt
35+
-
36+
description: Show radio switches status.
37+
supported_os: [linux]
38+
collector: command
39+
command: nmcli radio all
40+
output_file: nmcli_radio_all.txt
41+

artifacts/memory_dump/avml.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
version: 2.0
1+
version: 2.1
22
output_directory: /memory_dump
33
artifacts:
44
-
55
description: Capture a memory image.
66
supported_os: [linux]
77
collector: command
8-
command: avml avml.raw
8+
command: avml avml.lime

0 commit comments

Comments
 (0)