oneiroi
05/02/2023, 9:50 AMos_version.version
in the application of the RSR, my query is, where might this be tracked ? I'll be looking at the os_version.build
though I am not certain this will change either, has anyone had the opportunity to review the RSR's introduced in macOS > 13.x (Ventura) as yet ? Many thanks!sudo softwareupdate -ai
Downloading macOS Security Response 13.3.1 (a)
Will be re-checking the os_version
table after application to see what (if anything) changes➜ ~ ~/osqueryi --line
Using a virtual database. Need help, type '.help'
osquery> select * from os_version;
name = macOS
version = 13.3.1
major = 13
minor = 3
patch = 1
build = 22E261
platform = darwin
platform_like = darwin
codename =
arch = arm64
Downloading: 100.00%
Downloaded: macOS Security Response 13.3.1 (a)
allister
05/02/2023, 11:23 AMseph
05/02/2023, 1:15 PMos_version
table. I wonder if we can expose that
osquery> SELECT * FROM os_version;
+-------+---------+-------+-------+-------+--------+----------+---------------+----------+-------+
| name | version | major | minor | patch | build | platform | platform_like | codename | arch |
+-------+---------+-------+-------+-------+--------+----------+---------------+----------+-------+
| macOS | 13.3.1 | 13 | 3 | 1 | 22E261 | darwin | darwin | | arm64 |
+-------+---------+-------+-------+-------+--------+----------+---------------+----------+-------+
/System/Library/CoreServices/SystemVersion.plist
sw_vers
is pulling fromgrahamgilbert
05/04/2023, 7:36 PMseph
05/04/2023, 8:15 PM