STIGhubSTIGhub
STIGsRMF ControlsCompare

STIGhub

A free tool to search and browse the entire DISA STIG library. Saves up to 75% in security compliance research time.

Navigation

  • Browse STIGs
  • Search
  • RMF Controls
  • Compare Versions

Resources

  • About
  • Release Notes
  • VPAT
  • DISA STIG Library
STIGs updated 4 hours ago
Powered by Pylon
© 2026 Beacon Cloud Solutions, Inc. All rights reserved.
← Back to Tanium 7.3 Security Technical Implementation Guide

V-234074

CAT II (Medium)

The Tanium Server installers account database permissions must be reduced to an appropriate level.

Rule ID

SV-234074r961464_rule

STIG

Tanium 7.3 Security Technical Implementation Guide

Version

V2R3

CCIs

CCI-001814

Discussion

Creating the tanium and tanium_archive databases through the Tanium Server installer program or using the database create SQL scripts requires Sysadmin-level permissions. Once the databases have been created, the Tanium Server and Apache services must be configured to execute under an account that holds at least the dbo role on both databases. Post-installation, if the account used to configure the Tanium Server services to access the remote SQL database server holds only the Database Owner role, rather than the sysadmin role, consider granting this account the View Server State permission on the SQL Server. While not strictly necessary, this dynamic management view enables the Tanium Server to access data faster than the dbo role alone.

Check Content

Access the Tanium SQL server interactively.

Log on to the server with an account that has administrative privileges.

Open SQL Server Management Studio.

Connect to Tanium instance of SQL Server.

In the left pane, click "Databases". 

Select the Tanium database. 

Click "Security". 

Click "Users".

In the "Users" pane, review the role assigned to the Tanium Server service user account.

If the role assigned to the Tanium Server service account is not "db_owner", this is a finding.

If using Postgres:

Only owners of objects can change them. To view all functions, triggers, and trigger procedures, their ownership and source, as the database administrator (shown here as "postgres") run the following SQL:

$ sudo su - postgres
$ psql -x -c "\df+"

Fix Text

Access the Tanium SQL server interactively.

Log on to the server with an account that has administrative privileges.

Open SQL Server Management Studio.

Connect to Tanium instance of SQL Server.

In the left pane, click "Databases". 

Select the Tanium database. 

Click "Security". 

Click "Users". 

In the "Users" pane, right-click the Tanium Server service user account.

On the shortcut menu, click "Properties".

Under Database role membership, change role from "sysadmin" to "db_owner".

Click "OK".

If using Postgres:

Configure PostgreSQL to enforce access restrictions associated with changes to the configuration of PostgreSQL or database(s).

Use ALTER ROLE to remove accesses from roles:

$ psql -c "ALTER ROLE <role_name> NOSUPERUSER"