Database and Application Security, Nov 2006 1
Database and Application Security, Nov 2006 1
Database Security
Database Security - protection from malicious attempts to steal (view) or modify data.
Importance of Data
Bank/Demat accounts Credit card, Salary, Income tax data University admissions, marks/grades Land records, licenses Data = crown jewels for organizations
Overview
Levels of data security Authorization in databases Application Vulnerabilities Summary and References
Physical/OS Security
Physical level
Solution
Remote backup for disaster recovery Plus archival backup (e.g. DVDs/tapes)
Database Encryption
E.g. What if a laptop/disk/USB key with critical data is lost? Partial solution: encrypt the database at storage level, transparent to application
Whole database/file/relation
Column encryption
started up
sensitive information
Security (Cont.)
Network level: must use encryption to prevent
Network Security
All information must be encrypted to prevent eavesdropping
Public/private key encryption widely used Handled by secure http - https:// E.g. someone impersonates seller or bank/credit card company and fools buyer into revealing information
Encrypting messages alone doesnt solve this problem More on this in next slide
Site Authentication
Digital certificates are used in https to prevent impersonation/man-in-the middle attack
Certification agency creates digital certificate by encrypting, e.g., sites public key using its own private key
Verifies site identity by external means first!
Site sends certificate to buyer Customer uses public key of certification agency to decrypt certificate and find sites public key
Man-in-the-middle cannot send fake public key
11
Database password
Application Program
Database and Application Security, Nov 2006
Database
12
User Authentication
Password
Smartcards
Mosaab Daoud
13
User Authentication
Central authentication systems allow users to be authenticated centrally
LDAP or MS Active Directory often used for central authentication and user management in organizations
Single sign-on: authenticate once, and access multiple applications without fresh authentication
Microsoft passport, PubCookie etc Avoids plethora of passwords Password only given to central site, not to applications
Database and Application Security, Nov 2006 14
Overview
Levels of security Authorization in databases Application Vulnerabilities References
15
Authorization
Different authorizations for different users
16
Database/Application Security
Ensure that only authenticated users can access the system And can access (read/update) only data/interfaces that they are authorized to access
17
E.g. we cannot restrict students to see only (the tuples storing) their own grades
Application end users don't have database user ids, they are all mapped to the same database user id Database access control provides only a very coarse application-level access control
Database and Application Security, Nov 2006 18
Screen level authorization: which users are allowed to access which screens Parameter checking: users only authorized to execute forms with certain parameter values
E.g. CSE faculty can see only CSE grades
19
Benefits
can be implemented by the application. authorizations based on business logic easier to code at application level
Drawback:
Authorization must be done in application code, and may
be dispersed all over an application Hard to check or modify authorizations Checking for absence of authorization loopholes becomes very difficult since it requires reading large amounts of application code
Provides ability to automatically add predicates to where clause of SQL queries, to enforce fine-grained access control
E.g. select * from grades becomes
Mechanism:
relation name and mode of access, function returns a string containing authorization predicate Strings for each relation and-ed together and added to users query
Application domain: hosted applications, where applications of different organizations share a database (down to relation level)
Added predicates ensures each organization sees only its own
data
21
Privacy
Aggregate information about private information can be very valuable
E.g. identification of epidemics, mining for patterns (e.g. disease causes) etc. E.g. in US, many organizations released anonymized medical data, with names removed, but zipcode (= pincode), sex and date of birth retained
Turns out above (zipcode,sex,date of birth) uniquely identify most people!
Correlate anonymized data with (say) electoral data with same information
Not yet a criminal issue, but lawsuits have happened Conflict with Right To Information Act
22
Overview
Levels of security Authorization in databases Application Vulnerabilities References
23
Application Security
Applications are often the biggest source of insecurity
Poor coding of application may allow unauthorized access Application code may be very big, easy to make mistakes and leave security holes Very large surface area
Used in fewer places
SQL Injection
E.g. application takes accnt_number as input from user and creates an SQL query as follows:
string query = "select balance from account where account_number =" + accnt_number +"" Suppose instead of a valid account number, user types in
; delete from r; then (oops!) the query becomes select balance from account where account_number = ; delete from r;
Hackers can probe for SQL injection vulnerability by typing, e.g. *** in an input box
Tools can probe for vulnerability Error messages can reveal information to hacker
26
PreparedStatement pstmt= conn.prepareStatement( "select balance from account where account_number =?); pstmt.setString(1,accnt_number); pstmt.execute(); (assume that conn is an already open connection to the database)
Alternatives:
use stored procedures use a function that removes special characters (such as quotes) from strings
Database and Application Security, Nov 2006 27
Passwords in Scripts
E.g.: file1.jsp (or java or other source file) located in publicly accessible area of web server
Morals
Never store scripts (java/jsp) in an area accessible to http Never store passwords in scripts, keep them in config files Never store config files in any web-accessible areas Restrict database access to only trusted clients
At port level, or using database provided functionality
28
Application program has database password Great deal of trust in people who manage databases
Risk of compromise greater with value of data Happened with auto-rickshaw registration in New Delhi
29
Standard practice in banks, accounts departments Encoded as part of application workflow External paper trail Smart cards
Practical problem: absence of a user should not prevent organization from functioning Many organizations therefore grant overly generous authorizations
Database and Application Security, Nov 2006 30
E.g. low update rate data such as land records, birth/death data
Seize control of the application program can do anything to the database Solution:
only a few system administrators
Dont give database password to development team keep password in a configuration file on live server, accessible to
E.g. OS computes checksum on application to verify corruption Allows file-system access only to trusted applications
31
Small number of trusted administrators Encrypt entire database (and/or file system) Supported, e.g. in SQL Server 2005 Authentication (password/smart card) when database is started up
Database and Application Security, Nov 2006 32
Detecting Corruption
Audit trails: record of all (update) activity on the database: who did what, when
E.g. audit trail apparently deleted in New Delhi auto-rickshaw license case by malicious users with DBA access
on again after doing damage Supported by most commercial database systems But required DBAs with knowledge of application to monitor at this level
Information Leakage
So you thought only the query result matters?
34
myudf(E.salary)
myemployees
myudf(E.salary)
employees
A1
employees A1
UDF may be pushed down in plan, and executed on unauthorized intermediate result As a side-effect, UDF may expose values passed to it [Litchfield] Can be partly solved using sandboxing
Database and Application Security, Nov 2006 35
Query plan: Selection condition in query gets pushed below authorization semi-join Divide by zero exception if salary = 100K Reveals that employee has salary = 100K
Timing Analysis
Sub-query can perform an expensive computation only if certain tuples are present in its input
myudf(E.salary)
myudf(E.salary)
employees
A1
employees
A1
When is a plan safe? How to search for optimal safe plan? For details, see: Kabra et al., SIGMOD 2006
Database and Application Security, Nov 2006
37
Overview
Levels of security Authorization in databases Application Vulnerabilities Summary
38
Summary
Data security is critical Requires security at different levels Several technical solutions But human training is essential
39
Acknowledgments
Pictures in this talk taken from various web sources!
40
References
(Shameless advertisement!) Chapter 8 of Database System Concepts 5th Edition, Silberschatz, Korth and Sudarshan, McGraw-Hill The Open Web Application Security Project
http://www.owasp.org
e.g. WebInspect (SPI Dynamics) http://www.windowsecurity.com/software/Web-Application-Security/ http://www.cgisecurity.com/development/sql.shtml http://developers.sun.com/learning/javaoneonline/2005/webtier/TS-5935.pdf Kabra, Ramamurthy and Sudarshan, Redundancy and Information Leakage in Fine-Grained Access Control, SIGMOD 2006 Rizvi, Mendelzon, Sudarshan and Roy, Extending Query Rewriting Techniques for Fine-Grained Access Control, SIGMOD 2004
SQL Injection
41
Extra Slides
42
Authorization
Forms of authorization on (parts of) the database: Read authorization - allows reading, but not modification of data. Insert authorization - allows insertion of new data, but not modification of existing data. Update authorization - allows modification, but not deletion of data. Delete authorization - allows deletion of data
Database and Application Security, Nov 2006 43
a user-id public, which allows all valid users the privilege granted A role (more on this later)
Granting a privilege on a view does not imply granting any privileges on the underlying relations. The grantor of the privilege must already hold the privilege on the specified item (or be the database administrator).
Database and Application Security, Nov 2006 44
Privileges in SQL
select: allows read access to relation,or the ability to query using the view
grant select on branch to U1, U2, U3 insert: the ability to insert tuples update: the ability to update using the SQL update statement delete: the ability to delete tuples. references: ability to declare foreign keys when creating relations. usage: In SQL-92; authorizes a user to use a specified domain all privileges: used as a short form for all the allowable privileges
Example: grant users U1, U2, and U3 select authorization on the branch relation:
45
Example:
grant select on branch to U1 with grant option gives U1 the select privileges on branch and allows U1 to grant this privilege to others
Database and Application Security, Nov 2006 46
Roles
Roles permit common privileges for a class of users can be specified just once by creating a corresponding role Privileges can be granted to or revoked from roles Roles can be assigned to users, and even to other roles SQL:1999 supports roles
create role teller create role manager grant select on branch to teller grant update ( balance) on account to teller grant all privileges on account to manager grant teller to manager grant teller to alice, bob grant manager to avi
47
Example:
Revocation of a privilege from a user may cause other users also to lose that privilege; referred to as cascading of the revoke. We can prevent cascading by specifying restrict: With restrict, the revoke command fails if cascading revokes are required.
48
Secure Payment
Three-way communication between seller, buyer and credit-card company to make payment
Credit card company credits amount to seller Credit card company consolidates all payments from a buyer and collects them together
E.g. via buyers bank through physical/electronic
check payment
50