A multinational corporation uses Palo Alto Networks firewalls at its headquarters and five branch offices. SSL Forward Proxy decryption is enabled for all outbound HTTPS traffic. Recently, users in the finance department have reported that several banking and financial websites fail to load, displaying a certificate error in the browser. The errors occur only for these specific sites, while other HTTPS sites work fine. The firewall administrator has already added decryption exclusion rules for the affected domains, but the problem persists. The decryption policy is configured with a single rule that decrypts all ssl service traffic, and the exclusion rules are placed below this global decrypt rule. Which of the following is the best course of action to resolve the issue?
Correct: In a decryption policy, rules are evaluated top-down. Exclusion rules must appear before more general decrypt rules to take effect.
Why this answer
Palo Alto Networks decryption policy rules are evaluated in top-down order, and the first matching rule is applied. Since the exclusion rules are placed below the global decrypt rule that decrypts all SSL traffic, the global rule matches first and decrypts the traffic, causing certificate errors on sites that require specific handling. Reordering the exclusion rules above the global rule ensures they are evaluated first, allowing the affected domains to bypass decryption and load correctly.
Exam trap
The trap here is that candidates often confuse decryption profiles with decryption policy rules, thinking a profile can exclude domains, when in fact domain exclusion is strictly a function of rule ordering in the decryption policy.
How to eliminate wrong answers
Option A is wrong because a decryption profile can control cipher strength or block expired certificates, but it cannot exclude domains from decryption; domain exclusion is handled by decryption policy rules, not profiles. Option B is wrong because disabling SSL decryption for all traffic would break the security inspection for all HTTPS traffic, which is an overreaction and not necessary when only a few specific sites are affected. Option D is wrong because replacing the internal CA certificate with a publicly trusted certificate would not resolve certificate errors caused by decryption of sites that pin certificates or use client certificates; the issue is policy ordering, not CA trust.