A few database administrators told me they wanted to know why database security is vertical and how they can fix it. True, database access controls are vertical. The basic construct of a database is a table, and access controls grant access to tables or columns. This means you can see all of the entries from top to bottom, or none at all. Access is vertical and it lacks granularity.

Adrian Lane, Contributor

October 14, 2009

3 Min Read

A few database administrators told me they wanted to know why database security is vertical and how they can fix it. True, database access controls are vertical. The basic construct of a database is a table, and access controls grant access to tables or columns. This means you can see all of the entries from top to bottom, or none at all. Access is vertical and it lacks granularity.Say you want to restrict access to some of the rows, but not all of them. For example, you may not want all human resources personnel to see all employee records in the database, or you may want to restrict call center employees to a subset of all customer records. You then need to divide tables horizontally, safeguarding segments of the table, or even individual rows. There are several ways to do this, but here are a few tricks:

Queries: The most common method to segment horizontally is through queries. You add a 'where' clause to the query to perform additional comparisons, selecting just those rows appropriate to the application or job function.

This is the preferred method, but if you must restrict access of the user who is writing the query, or are worried about Web applications that alter the query dynamically, adding a 'where' clause to the query is insufficient.

Views: A view is nothing more than a virtual copy of a table. This virtual table is defined by a query where we only retrieve a select number of columns and rows, thereby presenting the subset of data you want the user to see. You provide the user access to the view, but not to the underlying table. Views are in essence a mask, revealing some of the information but concealing the rest.

Table Partitioning: Partitioning is where you create one logical table, but disperse physical portions of the table across different databases/partitions. You direct the database to store data in different partitions based upon the key value of the record. For example, data may be keyed 'top secret' and stored in one location, and 'informational' data stored in another. Resetting privileges within each of the databases can shield data within the same table.

Labels. Labeling is a way to tag individual rows with some form of identifier that denotes how the data is handled. Rather than use a key field, a new column is added to the table and labels are applied to each row. Databases with native labeling technology will automatically screen rows from users who do not have access to specified tags. Labels are not available with all databases as a native function, but can be simulated manually adding columns and using views as discussed above.

These solutions are applicable in cases where rewriting or re-architecting the application is not possible, but finer-grained data access controls are needed. In all cases you are adding structure or altering a subset of queries, with each option requiring different management and code change burdens. Use only if access controls cannot provide what you need.

Adrian Lane is an analyst/CTO with Securosis LLC, an independent security consulting practice. Special to Dark Reading.

About the Author(s)

Adrian Lane

Contributor

Adrian Lane is a Security Strategist and brings over 25 years of industry experience to the Securosis team, much of it at the executive level. Adrian specializes in database security, data security, and secure software development. With experience at Ingres, Oracle, and Unisys, he has extensive experience in the vendor community, but brings a pragmatic perspective to selecting and deploying technologies having worked on "the other side" as CIO in the finance vertical. Prior to joining Securosis, Adrian served as the CTO/VP at companies such as IPLocks, Touchpoint, CPMi and Transactor/Brodia. He has been invited to present at dozens of security conferences, contributed articles to many major publications, and is easily recognizable by his "network hair" and propensity to wear loud colors.

Keep up with the latest cybersecurity threats, newly discovered vulnerabilities, data breach information, and emerging trends. Delivered daily or weekly right to your email inbox.

You May Also Like


More Insights