PT-AM-CPE Exam Guide
This PT-AM-CPE exam focuses on practical knowledge and real-world application scenarios related to the subject area. It evaluates your ability to understand core concepts, apply best practices, and make informed decisions in realistic situations rather than relying solely on memorization.
This page provides a structured exam guide, including exam focus areas, skills measured, preparation recommendations, and practice questions with explanations to support effective learning.
Exam Overview
The PT-AM-CPE exam typically emphasizes how concepts are used in professional environments, testing both theoretical understanding and practical problem-solving skills.
Skills Measured
- Understanding of core concepts and terminology
- Ability to apply knowledge to practical scenarios
- Analysis and evaluation of solution options
- Identification of best practices and common use cases
Preparation Tips
Successful candidates combine conceptual understanding with hands-on practice. Reviewing measured skills and working through scenario-based questions is strongly recommended.
Practice Questions for PT-AM-CPE Exam
The following practice questions are designed to reinforce key PT-AM-CPE exam concepts and reflect common scenario-based decision points tested in the certification.
Question#3
What is the purpose of HTTP-only cookies?
A. Cookies can not be read by client-side scripts
B. Cookies can only be transmitted over HTTPS
C. Cookies can not be read by the server
D. Cookies can only be transmitted over HTTP
Explanation:
In the "Additional Cookie Security" section of the PingAM 8.0.2 documentation, HttpOnly is described as a critical security attribute for session cookies (like iPlanetDirectoryPro). Its primary purpose is to mitigate the risk of session hijacking via Cross-Site Scripting (XSS) attacks.
When a cookie is marked with the HttpOnly flag, the browser is instructed to restrict access to that cookie. Specifically, it prevents client-side scripts―such as those written in JavaScript―from accessing the cookie through the document.cookie API. If an attacker successfully injects a malicious script into a page, the script will be unable to "read" the session token, even though the cookie is still automatically sent by the browser with every valid HTTP request to the server.
Option B describes the Secure flag, which ensures cookies are only sent over encrypted (HTTPS) connections.
Option C is incorrect because the server must be able to read the cookie to validate the user's session.
Option D is a common misconception; the HttpOnly flag does not restrict the transport to "HTTP-only" (non-secure) protocols; rather, it restricts the access method within the browser environment. By default, PingAM 8.0.2 enables the HttpOnly flag for all session cookies. This is considered a best practice in modern identity management because it ensures that even if a web application has a vulnerability that allows for script injection, the user's primary authentication token remains protected from being exfiltrated by the attacker's script.
Disclaimer
This page is for educational and exam preparation reference only. It is not affiliated with Ping Identity, PingAM, or the official exam provider. Candidates should refer to official documentation and training for authoritative information.