digplanet beta 1: Athena
Share digplanet:

Agriculture

Applied sciences

Arts

Belief

Business

Chronology

Culture

Education

Environment

Geography

Health

History

Humanities

Language

Law

Life

Mathematics

Nature

People

Politics

Science

Society

Technology

Database activity monitoring (DAM) is a database security technology for monitoring and analyzing database activity that operates independently of the database management system (DBMS) and does not rely on any form of native (DBMS-resident) auditing or native logs such as trace or transaction logs. DAM is typically performed continuously and in real-time.

Database activity monitoring and prevention (DAMP) is an extension to DAM that goes beyond monitoring and alerting to also block unauthorized activities.

DAM helps businesses address regulatory compliance mandates like the Payment Card Industry Data Security Standard (PCI DSS), the Health Insurance Portability and Accountability Act (HIPAA), the Sarbanes-Oxley Act (SOX), U.S. government regulations such as NIST 800-53, and EU regulations.

DAM is also an important technology for protecting sensitive databases from external attacks by cybercriminals. According to the 2009 Verizon Business’ Data Breach Investigations Report—based on data analyzed from Verizon Business’ caseload of 90 confirmed breaches involving 285 million compromised records during 2008—75 percent of all breached records came from compromised database servers.

According to Gartner, “DAM provides privileged user and application access monitoring that is independent of native database logging and audit functions. It can function as a compensating control for privileged user separation-of-duties issues by monitoring administrator activity. The technology also improves database security by detecting unusual database read and update activity from the application layer. Database event aggregation, correlation and reporting provide a database audit capability without the need to enable native database audit functions (which become resource-intensive as the level of auditing is increased).”[1]

According to a survey by the Independent Oracle User Group (IOUG), “Most organizations do not have mechanisms in place to prevent database administrators and other privileged database users from reading or tampering with sensitive information in financial, HR, or other business applications. Most are still unable to even detect such breaches or incidents.”

Forrester refers to this category as “database auditing and real-time protection”.[2]

Contents

Common use cases for DAM [edit]

Privileged User Monitoring: Monitoring privileged users (or superusers), such as database administrators (DBAs), systems administrators (or sysadmins), developers, help desk, and outsourced personnel – who typically have unfettered access to corporate databases – is essential for protecting against both external and internal threats. Privileged user monitoring includes auditing all activities and transactions; identifying anomalous activities (such as viewing sensitive data, or creating new accounts with superuser privileges); and reconciling observed activities (such as adding or deleting tables) with authorized change requests.

Since most organizations are already protected at the perimeter level, indeed a major concern lies with the need to monitor and protect from privileged users. There is a high correlation therefore between Database Security and the need to protect from the insider threat. This is a complex task as most privileged users are capable of using sophisticated techniques to attack the database - stored procedures, triggers, views and obfuscated traffic - attacks that may be difficult to detect using traditional methods.

In addition, since targeted attacks frequently result in attackers gaining privileged user credentials, monitoring of privileged activities is also an effective way to identify compromised systems.

As a result, auditors are now demanding monitoring of privileged users for security best practices as well as a wide range of regulations. Privileged user monitoring helps ensure:

Data privacy, so that only authorized applications and users are viewing sensitive data.
Data governance, so that critical database structures and values are not being changed outside of corporate change control procedures.

Application Activity Monitoring: The primary purpose of application activity monitoring is to provide a greater level of end-user accountability and detect fraud (and other abuses of legitimate access) that occurs via enterprise applications, rather than via direct access to the database.

Multi-tier enterprise applications such as Oracle EBS, PeopleSoft, JD Edwards, SAP, Siebel Systems, Business Intelligence, and custom applications built on standard middle-tier servers such as IBM WebSphere and Oracle WebLogic Server mask the identity of end-users at the database transaction level. This is done with an optimization mechanism known as “connection pooling.” Using pooled connections, the application aggregates all user traffic within a few database connections that are identified only by a generic service account name. Application activity monitoring allows organizations to associate specific database transactions with particular application end-users, in order to identify unauthorized or suspicious activities.

End-user accountability is often required for data governance requirements such as the Sarbanes–Oxley Act. New auditor guidance from the Public Company Accounting Oversight Board for SOX compliance has also increased the emphasis on anti-fraud controls.

Cyberattack Protection: SQL injection is a type of attack used to exploit bad coding practices in applications that use relational databases. The attacker uses the application to send a SQL statement that is composed from an application statement concatenated with an additional statement that the attacker introduces.[3]

Many application developers compose SQL statements by concatenating strings and do not use prepared statement; in this case the application is susceptible to a SQL injection attack. The technique transforms an application SQL statement from an innocent SQL call to a malicious call that can cause unauthorized access, deletion of data, or theft of information.[3]

One way that DAM can prevent SQL injection is by monitoring the application activity, generating a baseline of “normal behavior”, and identifying an attack based on a divergence from normal SQL structures and normal sequences. Alternative approaches monitor the memory of the database, where both the database execution plan and the context of the SQL statements are visible, and based on policy can provide granular protection at the object level.

Core features of DAM [edit]

As defined by Gartner, “DAM tools use several data collection mechanisms (such as server-based agent software and in-line or out-of-band network collectors), aggregate the data in a central location for analysis, and report based on behaviors that violate the security policies and/or signatures or indicate behavioral anomalies. DAM demand is driven primarily by the need for privileged user monitoring to address compliance-related audit findings, and by threat-management requirements to monitor database access. Enterprise DAM requirements are beginning to broaden, extending beyond basic functions, such as the capability to detect malicious activity or inappropriate or unapproved database administrator (DBA) access.” [4]

More advanced DAM functions include:

  • The ability to monitor intra-database attacks and back-doors in real time (such as stored procedures, triggers, views, etc.)
  • A solution which is agnostic to most IT infrastructure variables - such as encryption or network topology
  • Blocking and prevention, without being in-line to the transactions
  • Active discovery of at-risk data
  • Improved visibility into application traffic
  • The ability to offer database activity monitoring in virtualized environments, or even in the cloud, where there is no well-defined or consistent network topology

Some enterprises are also seeking other functions, including:

  • Configuration auditing to comply with audits required by the U.S. Sarbanes-Oxley Act
  • DLP capabilities that address security concerns, as well as the data identification and protection requirements of the Payment Card Industry (PCI) and other data-centric regulatory frameworks
  • Database user rights attestation reporting, required by a broad range of regulations
  • The ability to offer database activity monitoring in virtualized environments, or even in the cloud, where there is no well-defined or consistent network topology
  • Better integration with vulnerability scanning products

Common DAM architectures [edit]

Interception-based: Most modern DAM systems collect what the database is doing by being able to “see” the communications between the database client and the database server. What DAM systems do is find places where they can view the communication stream and get the requests and responses without requiring participation from the database. The interception itself can be done at multiple points such as the database memory (e.g. the SGA), at the network (using a network TAP or a SPAN port if the communication is not encrypted), at the operating system level, or at the level of the database libraries.[3]

If there is unencrypted network traffic, then packet sniffing can be used. The advantage is that no processing is done on the host, however the main disadvantage is that both local traffic and sophisticated intra-database attacks will not be detected. To capture local access some network based vendors deploy a probe that runs on the host. This probe intercepts all local access and can also intercept all networked access in case you do not want to use network gear or in case the database communications are encrypted. However, since the agent does not do all the processing — instead it relays the data to the DAM appliance where all the processing occurs — it may impact network performance with all of the local traffic and real-time session termination may be too slow to interrupt unauthorized queries.

Memory-based: Some DAM systems have a light weight sensor that attaches to the protected databases and continuously polls the system global area (SGA) to collect SQL statements as they are being performed. A similar architecture was previously used by performance optimization products that also used the SGA and other shared data structures.[3]

In the latest versions of this technology a light weight sensor runs on the host and attaches to the process at the OS level to inspect private data structures. The advantages of this approach are significant:

• Complete coverage of all database transactions — the sensor covers traffic coming from the network, from the host, as well as from back-doors (stored procedures, triggers, views)
• A solution that is agnostic to most IT infrastructure variables - no need to re-architect the network, to open span ports or to worry about key management if the network is encrypted, and this model can also be used to protect databases deployed in virtualized environments or in the cloud

Log-based: Some DAM systems analyze and extract the information from the transaction logs (e.g., the redo logs). These systems use the fact that much of the data is stored within the redo logs and they scrape these logs. Unfortunately, not all of the information that is required is in the redo logs. For example, SELECT statements are not and so these systems will augment the data that they gather from the redo logs with data that they collect from the native audit trails as shown in Figure 3. These systems are a hybrid between a true DAM system (that is fully independent from the DBMS) and a SIEM which relies on data generated by the database. These architectures usually imply more overhead on the database server.[3]

Other names for DAM [edit]

Enterprise database auditing and real-time protection [2]

Additional reading [edit]

References [edit]


Original courtesy of Wikipedia: http://en.wikipedia.org/wiki/Database_activity_monitoring — Please support Wikipedia.
A portion of the proceeds from advertising on Digplanet goes to supporting Wikipedia.
2972 videos foundNext > 

Securing ePHI with Effective Database Activity Monitoring

From: http://www.nitrosecurity.com/resources/webcasts/securing-ephi-with-effective-database-activity-monitoring/ Electronic patient health information can be...

Protecting the database with Virtual Patching

In this video we will see how Virtual Patching or "vPatch" technology provided by McAfee Database Activity Monitoring (MDAM) protects databases.

Sensitive Database Access Auditing Customer Story

A multinational oil and gas company was manually auditing access to sensitive databases to address PCI and SOX regulations. Using SecureSphere Database Activ...

Database Monitoring

The following excerpt is from our webcast on Database Monitoring Please visit http://www.nitrosecurity.com/webcasts/archives/04072010_webcast/ to view the fu...

Tuning a Database Activity Monitoring rule with NitroView

Because the SIEM and Database Monitoring functions of Nitro View are tightly integrated, you can quickly tune rules (even correlation rules) directly from th...

Database Activity Monitoring Plus Encryption with Imperva and Vormetric

Brian Contos from Imperva interviews Gretchen Hellman from Vormetric. They discuss the value of bringing together Database Activity Monitoring (DAM) and Data...

Activity Monitor Software (AMS)

Activity Monitor Software (AMS) is designed for invisible and undetectable monitoring of PC user's activity. AMS works based on client-server architecture. I...

Database Monitoring & SIEM — Beyond Compliance to Data Breach and Fraud Detection

NitroSecurity June 23, 2011 Webcast: Database Monitoring & SIEM — Beyond Compliance to Data Breach and Fraud Detection http://www.nitrosecurity.com/resources...

Demo: Distributed Database Security with Real-Time Monitoring and Audit Protection

IBM® InfoSphere® solutions for data security and privacy are designed to support a holistic approach, helping organizations protect its data against a comple...

International Data Privacy Customer Story

In this customer story, an electronic payment processor is subject to the German Federal Data Protection Act. With a datacenter in Germany and Database Admin...

2972 videos foundNext > 

6 news items

 
Dark Reading
Fri, 17 May 2013 13:02:35 -0700

It's also a dead simple attack to detect, and one of the types of attacks that database activity monitoring systems were designed for. The simplest way to stop the thieves would have been to detect the alterations and then lock the card numbers or ...
 
PR Newswire (press release)
Tue, 14 May 2013 05:03:05 -0700

GreenSQL's unified software solution provides database security, database activity monitoring (DAM), and dynamic data masking in one product. GreenSQL is easy to install and manage, competitively priced, and can be up and running in a matter of hours.

Help Net Security

Help Net Security
Fri, 26 Apr 2013 01:21:02 -0700

Core elements of a data-centric security strategy that protects information where it resides are encryption with access controls to lock down and control access to critical information, combined with log management and database activity monitoring (DAM ...
 
DATAKONTEXT Fachverlag
Thu, 23 May 2013 00:33:16 -0700

82 Prozent vertrauen auf fehlerbehaftete beziehungsweise unzureichende Lösungsansätze wie manuelles Passwortmanagement oder Security-Tools in den Bereichen Identitätsmanagement (IdM), Database Activity Monitoring (DAM) oder Security ...

All About SECURITY

All About SECURITY
Wed, 24 Apr 2013 03:13:24 -0700

Imperva SecureSphere mit Update für Data Warehouses Imperva veröffentlicht heute eine Erweiterung seiner Datenbanksicherheitslösung SecureSphere Database Activity Monitoring 9.5. Die neue Version bietet verbesserte Unterstützung für Data ...
 
RUN!PC
Sun, 05 May 2013 17:52:45 -0700

Chalet Tech表示:「Chalet Web Audit Sensor提供企業N-Tiers資料庫應用程式環境的全方位商業稽核解決方案,跳脫了傳統Database Activity Monitoring (DAM) 產品僅單純提供資料庫稽核監控解決方案的框架,提供使用者完整的軌跡記錄,建立資料庫在N-Tiers環境 ...
Loading

Oops, we seem to be having trouble contacting Twitter

Talk About Database activity monitoring

You can talk about Database activity monitoring with people all over the world in our discussions.

Support Wikipedia

A portion of the proceeds from advertising on Digplanet goes to supporting Wikipedia. Please add your support for Wikipedia!