H12-725_V4.0 · Question #99
The keyword group "Keyword" is called in the content filtering configuration file on the firewall for the upload direction of HTTP applications. The action is blocking and is called in the security…
The correct answer is A. boring. Option A, "boring", is the only word that does not match the regex b.d and therefore passes through unblocked. The pattern requires a b followed by any characters, then a d - "boring" contains a b but has no d anywhere in the word, so the filter never triggers. Why the…
Question
The keyword group "Keyword" is called in the content filtering configuration file on the firewall for the upload direction of HTTP applications. The action is blocking and is called in the security policy. The following regular expression is configured in the key group "Keyword". "b.*d", which text can internal employees post on the forum at this time?
Options
- Aboring
- BBad
- CBeside
- Dabroad
How the community answered
(61 responses)- A74% (45)
- B3% (2)
- C8% (5)
- D15% (9)
Explanation
Option A, "boring", is the only word that does not match the regex b.*d and therefore passes through unblocked. The pattern requires a b followed by any characters, then a d - "boring" contains a b but has no d anywhere in the word, so the filter never triggers.
Why the distractors are blocked:
- B ("Bad"): In firewall content filters, regex matching is typically case-insensitive.
Bmatchesb, and the word ends ind→ matchesb.*d→ blocked. - C ("Beside"):
Bmatchesb, and there is adlater in the word (besid-e) → matchesb.*d→ blocked. - D ("abroad"): The substring
b...dis clearly present (b-r-o-a-d) → matchesb.*d→ blocked.
Memory tip: Think of b.*d as a trap that snaps shut the moment it finds any d after a b. "Boring" escapes because it never gives the trap a d to grab onto - no d, no match, no block.
Topics
Community Discussion
No community discussion yet for this question.