- 필수 기능
- 시작하기
- Glossary
- 표준 속성
- Guides
- Agent
- 통합
- 개방형텔레메트리
- 개발자
- Administrator's Guide
- API
- Datadog Mobile App
- CoScreen
- Cloudcraft
- 앱 내
- 서비스 관리
- 인프라스트럭처
- 애플리케이션 성능
- APM
- Continuous Profiler
- 스팬 시각화
- 데이터 스트림 모니터링
- 데이터 작업 모니터링
- 디지털 경험
- 소프트웨어 제공
- 보안
- AI Observability
- 로그 관리
- 관리
This API exposes a debug endpoint in a production environment. Frameworks sometimes expose debugging features that are helpful during development. However, those features could be abused by attackers and should be disabled before being deployed to production.
Datadog’s supported framework ecosystem is continually evolving. The following list provides a sample:
This finding works by identifying an endpoint responding with 200
status codes to requests to known debugging endpoints. Debugging endpoints in production can lead to security breaches by exposing sensitive data and application internals.
Disable debug endpoints in production. The method varies based on the debugging tool being used; examples are provided for illustration purposes:
JAVA Actuators settings are set in the application.properties
configuration file by specifying management.endpoints.web.exposure.include=[]
(see the documentation for more information). Be aware that in certain configurations, these settings can monitor and access application metrics, so it is advisable to restrict access to these endpoints.
In PHP frameworks, it is common to install the package as a development dependency using the --dev
flag to prevent the feature from being added in the production release. For example: composer require laravel/telescope --dev
.