-
Notifications
You must be signed in to change notification settings - Fork 128
Removed invalid character #1505
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR removes invalid characters from XML self-closing tags in IIS Server STIG configuration files. The changes convert self-closing XML tags to proper opening/closing tag pairs by removing trailing slashes and adding explicit closing tags.
- Converted self-closing
<OrganizationalSettings />tags to proper opening/closing tag structure - Fixed XML syntax in two IIS Server STIG configuration files (versions 3.3 and 3.4)
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| source/StigData/Processed/IISServer-10.0-3.4.org.default.xml | Converted self-closing OrganizationalSettings tag to opening tag with explicit closing tag |
| source/StigData/Processed/IISServer-10.0-3.3.org.default.xml | Converted self-closing OrganizationalSettings tag to opening tag with explicit closing tag |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
| associated comment. | ||
| --> | ||
| <OrganizationalSettings fullversion="3.4" /> | ||
| <OrganizationalSettings fullversion="3.4" > |
Copilot
AI
Sep 11, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's an extra space before the closing angle bracket. It should be <OrganizationalSettings fullversion="3.4"> without the trailing space.
| <OrganizationalSettings fullversion="3.4" > | |
| <OrganizationalSettings fullversion="3.4"> |
| associated comment. | ||
| --> | ||
| <OrganizationalSettings fullversion="3.3" /> | ||
| <OrganizationalSettings fullversion="3.3" > |
Copilot
AI
Sep 11, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's an extra space before the closing angle bracket. It should be <OrganizationalSettings fullversion="3.3"> without the trailing space.
| <OrganizationalSettings fullversion="3.3" > | |
| <OrganizationalSettings fullversion="3.3"> |
|
Incorporated changes into --> Update PowerStig to parse/apply Microsoft IIS 10.0 Server STIG - Ver 3, Rel 5#1508 #1517 |
Pull Request (PR) description:
This Pull Request (PR) fixes the following issues:
This fixes #
Task list: