Generated docs from job=generate-docs branch=master [ci skip]

This commit is contained in:
Atomic Red Team doc generator
2024-07-13 00:11:15 +00:00
parent c0ce2c7a82
commit 3efa6f8917
3 changed files with 11 additions and 10 deletions
+5 -4
View File
@@ -4751,8 +4751,8 @@ defense-evasion:
- name: Truncate system log files via truncate utility
auto_generated_guid: 6290f8a8-8ee9-4661-b9cf-390031bf6973
description: 'This test truncates the system log files using the truncate utility
with (-s 0 or --size=0) parameter which sets file size to zero, thus emptying
the file content
with (-s 0) parameter which sets file size to zero, thus emptying the file
content
'
supported_platforms:
@@ -4774,8 +4774,9 @@ defense-evasion:
'
executor:
command: "sudo truncate -s 0 #{system_log_path} #size parameter shorthand\nsudo
truncate --size=0 #{system_log_path} #size parameter \n"
command: 'sudo truncate -s 0 #{system_log_path} #size parameter shorthand
'
name: sh
elevation_required: true
- name: Truncate system log files via truncate utility (freebsd)
+5 -4
View File
@@ -2762,8 +2762,8 @@ defense-evasion:
- name: Truncate system log files via truncate utility
auto_generated_guid: 6290f8a8-8ee9-4661-b9cf-390031bf6973
description: 'This test truncates the system log files using the truncate utility
with (-s 0 or --size=0) parameter which sets file size to zero, thus emptying
the file content
with (-s 0) parameter which sets file size to zero, thus emptying the file
content
'
supported_platforms:
@@ -2785,8 +2785,9 @@ defense-evasion:
'
executor:
command: "sudo truncate -s 0 #{system_log_path} #size parameter shorthand\nsudo
truncate --size=0 #{system_log_path} #size parameter \n"
command: 'sudo truncate -s 0 #{system_log_path} #size parameter shorthand
'
name: sh
elevation_required: true
- name: Delete log files via cat utility by appending /dev/null or /dev/zero
+1 -2
View File
@@ -163,7 +163,7 @@ sudo log erase --ttl #Deletes only time-to-live log content
<br/>
## Atomic Test #4 - Truncate system log files via truncate utility
This test truncates the system log files using the truncate utility with (-s 0 or --size=0) parameter which sets file size to zero, thus emptying the file content
This test truncates the system log files using the truncate utility with (-s 0) parameter which sets file size to zero, thus emptying the file content
**Supported Platforms:** macOS
@@ -185,7 +185,6 @@ This test truncates the system log files using the truncate utility with (-s 0 o
```sh
sudo truncate -s 0 #{system_log_path} #size parameter shorthand
sudo truncate --size=0 #{system_log_path} #size parameter
```