セキュリティ管理者は、Web アプリケーションから特定のデータへのパブリック アクセスを安全に提供しようとしています。アプリケーションにアクセスするクライアントには、次のことが求められます。 * POST および GET オプションのみを許可します。 * すべてのデータを TLS 1.2 以上で保護して送信します。 * 要求された各タイプのデータにアクセスするには、特定の URL を使用します。 * ベアラートークンで認証します。 これらの要件を満たすために、セキュリティ管理者は次のどれを推奨する必要がありますか?
正解:A
An API gateway is the best solution to meet the specified requirements for securely providing public access to specific data. An API gateway allows the administrator to control HTTP methods like POST and GET, ensure secure transmission via TLS 1.2 or greater, and enforce authentication using bearer tokens. It also allows access control by specifying URLs for different types of data. API gateways centralize security and traffic management for APIs, making them ideal for this type of secure access scenario. CASP+ emphasizes the importance of API gateways in managing and securing web application interfaces. References: CASP+ CAS-004 Exam Objectives: Domain 3.0 - Enterprise Security Architecture (API Security and API Gateways) CompTIA CASP+ Study Guide: Securing Web Application Interfaces with API Gateways