ARDvark parses the Apple Remote Desktop (ARD) database file, and associated cache files to pull out application usage, user activity, and filesystem listing
The ARD database contains information about all systems within an ARD deployment in an enterprise.
The ARD database file collects user login activity and detailed application usage from all reporting ARD client systems. This information been confirmed for macOS 10.14 (Mojave).
The ARD database file ("RMDB") is located at the following location and is only populated on ARD administrator systems:
/private/var/db/RemoteManagement/RMDB/rmdb.sqlite3
The following plist files exist on ARD client systems and contain cached user activity and application usage that is eventually written to the RMDB:
/private/var/db/RemoteManagement/caches/UserAcct.tmp
/private/var/db/RemoteManagement/caches/AppUsage.plist
The /private/var/db/RemoteManagement/caches/filesystem.cache
file is a database that contains a complete file listing of the ARD client system.\
The plists are also forwarded to the ARD ADMIN SYSTEM and are stored in subdirectories within the /private/var/db/RemoteManagement/ClientCaches
directory.
The plists are renamed to the reporting client system's MAC address. For example:
/private/var/db/RemoteManagement/ClientCaches/ApplicationUsage/{macaddress}
-> AppUsage.plist files sent by all ARD CLIENT SYSTEMS/private/var/db/RemoteManagement/ClientCaches/UserAccounting/{macaddress}
-> UserAcct.tmp files sent by all ARD CLIENT SYSTEMS/private/var/db/RemoteManagement/ClientCaches/SoftwareInfo/{macaddress}
-> filesystem.cache files sent by all ARD CLIENT SYSTEMS
ARDvark can provide the following information:
Application Usage:
- Host name (RMDB only)
- MAC address (RMDB only)
- Application path
- Application name
- Launch time
- Frontmost time
- End time
- User
- Last report time
- Whether or not the application was running at the time of last report to the ARD admin system
User Activity:
- Host name (RMDB only)
- MAC address (RMDB only)
- Last report time
- Username
- Login type
- Login time
- Logout time
- Source system (not consistently present)
ardvark.py [-h] [-d rmdb.sqlite3] [-u UserAcct.tmp] [-a AppUsage.plist] [-f filesystem.cache]
NOTE: Due to the size of the rmdb.sqlite3 and filesystem.cache files, parsing isn't instantaneous. Please be patient.
ardvark.py -d rmdb.sqlite
This will produce 2 output files in your working directory:
- AppUsageRMDB.csv
- UserActivityRMDB.csv
ardvark.py -u UserAcct.tmp
ARDvark will accept UserAcct.tmp files from client systems, or the files under /private/var/db/RemoteManagement/ClientCaches/UserAccounting
on ARD administrator system.
This will produce 1 output file in your working directory:
- UserActivityPlist.csv
ardvark.py -u AppUsage.plist
ARDvark will accept AppUsage.plist files from client systems, or the files under private/var/db/RemoteManagement/ClientCaches/ApplicationUsage
on ARD administrator system.
This will produce 1 output file in your working directory:
- AppUsagePlist.csv
ardvark.py -f filesystem.cache
This will produce 1 output file in your working directory:
- fscache.txt