Issue

When navigating to an alert page in Panther, I encounter the error ".technique the requested element is null which the schema does not allow​" . How can I resolve this?

Resolution

To resolve this issue:

  1. Open the detection file (e.g., YAML file) that's causing the error.

  2. Locate the Reports section in the file.

  3. Find the MITRE ATT&CK technique specification.

  4. Ensure the technique is formatted as TacticID:TechniqueID. For example:

    Reports:
      MITRE ATT&CK:
        - TA0005:T1556.006
  5. If the tactic ID is missing (e.g., only "T1556.006" is present), add the appropriate tactic ID followed by a colon.

  6. Save the detection.

Cause

This issue occurs when the MITRE ATT&CK report in a detection file is not properly formatted. Panther expects the MITRE ATT&CK techniques to include both the tactic ID and the technique ID, separated by a colon.

Always double-check the format of your MITRE ATT&CK techniques when creating or modifying detection files. The correct format is "TacticID:TechniqueID" (e.g., TA0005:T1556.006).