
Hello,
Rule 60204 uses the variable $MS_FREQ, which is declared in the same file and defaults to 8:
<var name="MS_FREQ">8</var>
You are getting this error because the variable is not defined in your rules file, to fix it you would have to define this variable. However, this option does not work right now and is being investigated in this issue, so the solution would be to set the value directly in the rule:
<rule id="60204" level="12" frequency="8" timeframe="240" overwrite="yes">
<if_matched_group>authentication_failed</if_matched_group>
<same_field>win.eventdata.ipAddress</same_field>
<options>no_full_log</options>
<description>Multiple Windows logon failures.</description>
<mitre>
<id>T1110</id>
</mitre>
<group>authentication_failures,gdpr_IV_32.2,gdpr_IV_35.7.d,hipaa_164.312.b,nist_800_53_AC.7,nist_800_53_AU.14,nist_800_53_SI.4,pci_dss_10.2.4,pci_dss_10.2.5,pci_dss_11.4,tsc_CC6.1,tsc_CC6.8,tsc_CC7.2,tsc_CC7.3,</group>
</rule>