Application Security Management is not supported for your selected Datadog site ().

Datadog Application Security Management (ASM) monitors threats and provides protection against application-level attacks that aim to exploit code-level vulnerabilities. It leverages runtime code execution context, trace and error data, and user attribution.

General application security terms

attack attempt
Which security rule was triggered by the trace.
Datadog library
also tracer, tracing library
A programming language-specific library embedded in web applications. ASM uses the library to monitor and protect. APM uses the same library to instrument code for tracing telemetry.
detection rule
A conditional logic definition that is applied to ingested data and cloud configurations. When at least one case defined in a rule is matched over a given period of time, Datadog generates a security signal.
See Detection rules.
passlist (formerly exclusion filter)
A mechanism for discarding security traces flagged through the ASM library and the In-App WAF rules. Passlist is applied as requests are ingested into Datadog (intake). Passlist helps manage false positives and intake costs.
See Exclusion filters in the app.
In-App WAF rules (formerly event rules)
A set of rules executed in the Datadog libraries to catch security activity. These include Web Application Firewall (WAF) patterns that monitor for attempts to exploit known vulnerabilities.
See In-App WAF rules.
interactive application security testing (IAST)
An application security testing method that proactively detects vulnerabilities while the app is run by an automated test, human tester, or any activity interacting with the application functionality.
Remote Configuration
A Datadog platform mechanism that enables the Agent configuration to be updated remotely. Used by ASM to update In-App WAF rules, activate the product, and block attackers.
See How Remote Configuration Works.
service
A single web application, microservice, API, or function. Usually serves a business function.
signal
A detection of an application attack that impacts your services. Signals identify meaningful threats for you to review, and should be triaged with a high priority.
See Signals Explorer in the app.
software composition analysis (SCA)
Comparing the open source libraries loaded by your services to databases of known vulnerabilities. SCA helps you identify vulnerable dependencies, outdated libraries, and licensing issues in the open source libraries that your web services load.
severity
An indicator of how quickly an attack attempt should be triaged and addressed. Based on a combination of factors, including the attack’s potential impact and risk. Values are Critical, High, Medium, Low, Info.
security trace
A distributed trace for which security activity has been flagged by In-App WAF rules. The underlying trace is shared with APM, allowing deeper and faster investigations.
suspicious request
A distributed trace for which security activity has been flagged by In-App WAF rules. The underlying trace is shared with APM, allowing deeper and faster investigations.
user attribution
A mechanism that maps suspicious requests to known users in your systems.
See Tracking User Activity.
vulnerability
Passive risk within an application. From OWASP: “A vulnerability is a hole or a weakness in the application, which can be a design flaw or an implementation bug, that allows an attacker to cause harm to the stakeholders of an application. Stakeholders include the application owner, application users, and other entities that rely on the application.”
trace qualification
The process by which Datadog helps understand the impact of traces, labeling them as Harmful Safe or Unknown.
See Trace Qualification.
threat intelligence
A set of rules executed in the Datadog libraries to detect threats. These include Web Application Firewall (WAF) patterns that monitor for attempts to exploit known vulnerabilities.
See Threat Intelligence
suspicious attackers
A precursor to Flagged IPs. Suspicious IPs have met a minimum threshold of attack traffic to be classified as suspicious, but not the threshold for Flagged. Thresholds are not user-configurable.
See Attacker Explorer
flagged attackers
IPs that send large amounts of attack traffic. We recommend reviewing and blocking Flagged IPs. Thresholds are not user-configurable.
See Attacker Explorer

Attacks and known vulnerabilities terms

Open Web Application Security Project (OWASP)
A nonprofit foundation with several projects to enhance web application security. OWASP is best known for the OWASP Top 10, a broad consensus about the most critical security risks to web applications.
Cross-Site Scripting (XSS)
A type of injection attack in which malicious scripts are injected into otherwise benign and trusted websites.
See XSS on OWASP.
Structured Query Language Injection (SQLi, SQL Injection)
A type of injection attack in which a SQL query is executed via the input data from the client to the application. SQL commands are injected into data-plane input in order to affect the execution of predefined SQL commands. A successful SQL injection exploit can read sensitive data from the database, modify database data (Insert/Update/Delete), execute administration operations on the database (such as shutdown the DBMS), recover the content of a given file present on the DBMS file system, and in some cases issue commands to the operating system.
Related: Cassandra Query Language Injection (CQLi), NoSQL Injection (NoSQLi) - Similar to SQLi but for the Cassandra Query Language and NoSQL.
See SQL Injection on OWASP.
Server-Side Request Forgery (SSRF)
A vulnerability where a web application fetches a remote resource without validating the user-supplied URL. It allows an attacker to coerce the application to send a crafted request to an unexpected destination, even when protected by a firewall, VPN, or another type of network access control list (ACL).
See Server-Side Request Forgery on OWASP.
Local File Inclusion (LFI)
A vulnerability that allows an attacker to include a file locally present on the server during the processing of the request. In most cases this allows the attacker to read sensitive information stored in files on the server. In more severe cases exploitation can lead to cross-site scripting or remote code execution.
See Testing for LFI on OWASP.
Remote File Inclusion (RFI)
A vulnerability similar to Local File Inclusion, but allows an attacker to include a remote file during the processing of the request. The files used in Remote File Inclusion attacks most commonly contain malicious code for PHP, JSP, or similar technologies.
Remote Code Execution (RCE)
A vulnerability that allows an attacker to remotely execute code on a machine.
Object-Graph Navigation Language Injection (OGNLi)
A vulnerability that allows an attacker to execute their own OGNL expression in a Java application, most commonly leading to remote code execution.
See OGNLi in OWASP Top 10.

Further reading