Compliance Commands
Keeper Commander compliance reporting commands
About
Requires Compliance Reporting add-on
Compliance reports let account administrators adhere to regulations by providing on-demand visibility to access permissions on records and credentials across the enterprise.
Using Commander, compliance reports can be scheduled and automated, and results can be exported to a CSV file or JSON.
For more information about Compliance Reports, see the Compliance Reports documentation:
The compliance-report
command
compliance-report
commandThe compliance-report
command allows you to run reports just as you would in the Keeper Admin Console. See record permissions by node, user and title, filter by owned or shared records and output results to a file.
Cache
The compliance-report
command relies on a cache in order to improve performance across multiple report queries.
This means that the first call to compliance-report
may take several minutes as the system pulls in the required data.
During this time, Commander will display messaging explaining the current step.
Additionally, a manual rebuild of the cache can be performed with the -r
flag. Do this to see recent changes in the compliance data.
compliance-report -r
By default (so that the generated report reflects reasonably current and accurate data), locally-cached data older than 1 day are automatically refreshed via the process described above. As a result, any call to compliance-report
that occurs more than 1 day after a previous call to the same command will result in another data-fetching operation that may take some time to finish (as described above for first-time calls) .
To manually override this default behavior, see the next section.
Conversely, if you would like to circumvent the automatic cache-refresh behavior described above and generate a report based solely on previously cached data (resulting in possibly stale results but nevertheless useful for avoiding the possibly long loading times required to refresh the cache), you can do so with the -nr
or --no-rebuild
flag. Do this to quickly perform queries on compliance data in cases where you can be fairly confident that the relevant data have not changed significantly since the last command call / cache refresh.
compliance-report -nr
Removing the Cache
The compliance report cache can be removed manually with the --no-cache
flag. When run, this completely removes all cached compliance report information from your machine.
compliance-report --no-cache
Alternatively, you can delete the cache file locally on disk from the location where you ran Commander. Delete the file called sox_<ID>.db
which contains the encrypted compliance data.
Filters
The compliance report can be filtered by Node, User, Job Title and if the record is shared, deleted, or active.
Outputting to a File
Like many Commander reports, the compliance report results can be saved to a file. To do this use the --output
and --format
options.
Output
--output [FILE PATH]
Tells Commander to write results to a file at the given location. If no file exists it will be created.
Format
--format [csv, json, table]
Tells Commander the format to write the report results as. The default result is in table format, which displays a formatted table of results. The other options are Comma Separated Values (CSV), JavaScript Object Notation (JSON).
If the --format
flag is added without the --output
flag, the results will be shown in Commander in the the given format
The compliance
command
compliance
commandIn addition to enabling users in generating custom reports, Commander also provides users the ability to generate specific reports with the compliance
command. These specific reports can be generated by invoking the compliance
command's supported sub-commands.
The compliance
command supports the following sub commands:
Refer to the sub command's section for more information.
Compliance Team Report
Shared folders can be shared to Keeper Teams as well as individuals. The compliance report can display a report of the access that each team has to these shared folders.
To run the Compliance Team Report, use the following command in Commander:
compliance team-report
This report uses the compliance report cache described above.
The report shows each team that has access to a shared folder, and what access it has to that shared folder.
If you would like to include team-membership information (i.e., which users belong to each team) in the report, you can include the optional flag --show-team-users
/-tu
in your command call, as illustrated in the following example:
compliance team-report -tu
Please note that, as a result of the additional flag in the above command call, a column titled "Team Users" (in which the usernames of all members of each relevant team can be found) will be added to the generated report.
Compliance Record-Access Report
The compliance record-access report displays a list of all records that either a) have been accessed by, or b) are currently accessible to any given user(s), along with other relevant information (e.g., app used, IP address, event timestamp, etc.).
To run the Compliance Record-Access Report and show a user's record-access history, run the following command in Commander:
compliance record-access-report user1@company.com
where user1@company.com
is the user whose record-access activity we'd like to audit, with the resulting output being something like the following:
Similarly, to show a list of all records that are currently accessible by that same user (i.e., all records currently in the user's vault), run the following command:
compliance record-access-report --report-type=vault user1@company.com
The output of the above command should look similar to the previous example, but will exclude records that are not currently in the user's vault and may include records that have never been accessed by that user.
Additionally, if you would like to run this report for multiple users, you may do so by either specifying each username / ID in a space-delimited list in the command call or by using the "@all" shorthand to indicate that you would like to run the report for all users, as illustrated in the following examples:
compliance record-access-report user1@company.com user2@company.com
compliance record-access-report @all
Compliance Summary Report
The compliance summary report displays aggregate information about records within the enterprise (grouped by record-owner by default for now, but support for grouping by other entities may be added to this feature later)
To run the Compliance Summary Report, run the following command in Commander:
compliance summary-report
or
compliance stats
with the resulting output being something like the following:
Compliance Shared-Folder Report
Similar to compliance team-report
, this command outputs a report detailing the access that all entities (teams as well as individual users) have to all shared folders within the enterprise.
To run the Compliance Shared-Folder Report, run the following command in Commander:
compliance shared-folder-report
or
compliance sfr
with the corresponding output:
Similar to the compliance team-report
command described above, this command also accepts an optional --show-team-users
/-tu
flag indicating that team-membership data be included (where appropriate) in the resulting report. Here is an example of its usage:
compliance sfr -tu
Please note that, in contrast to the output of compliance team-report -tu
, the resulting report generated by the above command will include the appropriate additional team-membership data in the existing column named "Email" and each username associated with a team will by preceded by "(TU)" to denote it as such.
See the Reporting Documentation for other reports available in Commander
Last updated