Cette page n'est pas encore disponible en français, sa traduction est en cours.
Si vous avez des questions ou des retours sur notre projet de traduction actuel,
n'hésitez pas à nous contacter.
The Datadog nginx tracing module has experimental support for threat detection and blocking.
Enabling threat detection
Get started
Verify that your nginx build was compiled with the flag
--with-threads
. Most distributions ship with this flag enabled by default.
To check if your nginx installation was built with thread support, run nginx -V
and check the configure arguments
line. If you cannot find
--with-threads
in the output, you will need to rebuild nginx with this flag
enabled. For more information on how to build nginx from sources, see the
nginx documentation.
Update your nginx tracing library module to at least version 1.2.0. Visit
the GitHub releases page and select the artifact named according to the
pattern “ngx_http_datadog_module-appsec-<amd64/arm64>-<nginx
version>.so.tgz”. Note that this artifact includes “appsec” in the name.
Enable AAP in the nginx configuration.
You need to:
For example:
load_module /path/to/ngx_http_datadog_module.so;
thread_pool waf_thread_pool threads=4 max_queue=128;
http {
datadog_appsec_enabled on;
datadog_waf_thread_pool_name waf_thread_pool;
}
For more information, see the reference documentation.
Une fois cette configuration terminée, la bibliothèque recueille des données de sécurité à partir de votre application et les envoie à l’Agent, qui les transmet à son tour à Datadog. Les règles de détection prêtes à l’emploi signalent alors les attaques et les problèmes potentiels de configuration, afin que vous puissiez agir en conséquence.
Pour tester la détection des menaces Application Security Management, envoyez des patterns d’attaque connus à votre application. Par exemple, exécutez un fichier contenant le script curl suivant afin de déclencher la règle de détection de scanner de sécurité :
for ((i=1;i<=250;i++));
do
# Target existing service’s routes
curl https://your-application-url/existing-route -A dd-test-scanner-log;
# Target non existing service’s routes
curl https://your-application-url/non-existing-route -A dd-test-scanner-log;
done
Remarque : la plupart des versions récentes prennent en charge la valeur dd-test-scanner-log
.
Quelques minutes après avoir activé votre application et envoyé les patterns d’attaque, des informations sur les menaces s’affichent dans l’Application Signals Explorer. Des informations sur les vulnérabilités apparaissent également dans le Vulnerability Explorer.
Limitations
As of version 1.3.0, the available functionality has the following important limitations:
The request body is not inspected, regardless of its content type.
It’s not possible to block the request based on characteristics of the
response, such as its status code, headers, or body.
Using AAP without APM tracing
If you want to use Application & API Protection without APM tracing functionality, you can deploy with tracing disabled:
- Configure your tracing library with the
DD_APM_TRACING_ENABLED=false
environment variable in addition to the DD_APPSEC_ENABLED=true
environment variable. - This configuration will reduce the amount of APM data sent to Datadog to the minimum required by App and API Protection products.
For more details, see [Standalone App and API Protection][standalone_billing_guide].
[standalone_billing_guide]: /security/application_security/guide/standalone_application_security/
Further Reading
Documentation, liens et articles supplémentaires utiles: