ソフトウェア開発者は、Webアプリケーションに認証方式を追加する必要があります。以下の要件を満たす必要があります。 * Web アプリケーションでは、十分にサポートされている標準を使用する必要があります。 * Web アプリケーションへの最初のログインは、外部の信頼できる第三者に依存する必要があります。 ※ログインは最長6ヶ月間維持する必要があります。 これらの要件を最もよくサポートするのはどれですか? (2 つ選択してください)。
正解:A,C
To meet the requirements for authentication using trusted third parties and session maintenance, SAML (Security Assertion Markup Language) and JWT (JSON Web Token) are the best options. SAML is widely used for single sign-on (SSO) and federated authentication, allowing users to authenticate with an external identity provider (trusted third party). JWT is commonly used for maintaining authenticated sessions across web applications and is well-suited for long-term session management, like the six-month duration mentioned. Together, these solutions meet the requirements for standards-based authentication and long- lasting sessions. CASP+ discusses the role of SAML in federated identity management and JWT in token- based authentication. References: CASP+ CAS-004 Exam Objectives: Domain 2.0 - Enterprise Security Operations (Federated Identity Management, JWT, SAML) CompTIA CASP+ Study Guide: Web Application Authentication with SAML and JWT