insights-core icon indicating copy to clipboard operation
insights-core copied to clipboard

krb5 parser not conform with the latest version of krb5.conf (1.19.1)

Open ioah86 opened this issue 3 years ago • 0 comments

In the latest documentation of krb5.conf, it says:

Placing a ‘’ after the closing bracket of a section name indicates that the section is final, meaning that if the same section appears within a later file specified in KRB5_CONFIG, it will be ignored. A subsection can be marked as final by placing a ‘’ after either the tag name or the closing brace.

The same holds for subsections:

subsection can be marked as final by placing a ‘*’ after either the tag name or the closing brace.

Your code in krb5.py does not reflect that, as you can see in this line for the section tag and in this line for subsections.

ioah86 avatar Mar 12 '21 13:03 ioah86