Skip to content
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

Xml entity escape #523

Merged
merged 5 commits into from
Feb 23, 2024
Merged

Xml entity escape #523

merged 5 commits into from
Feb 23, 2024

Conversation

Munawwar
Copy link
Contributor

No description provided.

@Munawwar
Copy link
Contributor Author

@tngan Would you like to review this PR?

@@ -259,7 +274,10 @@ const libSaml = () => {
*/
replaceTagsByValue(rawXML: string, tagValues: any): string {
Object.keys(tagValues).forEach(t => {
rawXML = rawXML.replace(new RegExp(`{${t}}`, 'g'), tagValues[t]);
rawXML = rawXML.replace(
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we can keep the original target as its well documented, and only the interpolated value is escaped.

        rawXML = rawXML.replace(new RegExp(`{${t}}`, 'g'), escape(tagValues[t]));

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor Author

@Munawwar Munawwar Feb 15, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We cannot use original regex, because there are templates like <saml:AttributeStatement>{Attributes}</saml:AttributeStatement> (line 159) that accepts XML inside the placeholder. Those shouldn't be escaped. So we need to differentiate between placeholders for XML attributes attr="{val}" vs placeholders for tag content <tag>{content}</tag>.

Now in future if we want to escape content as well, then we can escape all content by default, and use a new placeholder convention to prevent escaping for specific parts (maybe something like mustache/handlebars inspired {{{content}}}). Right now, we don't need this from my tests.

As for xml-escape, I will make that change (though implementation-wise it is identical. Only 5 characters need escaping - https://github.com/miketheprogrammer/xml-escape/blob/master/index.js#L16).

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have made the change to use xml-escape npm module

Copy link
Contributor Author

@Munawwar Munawwar Feb 21, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@tngan Is this new change ok?

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes, and in the future we better intercept the proper xml building process instead of using placeholder replacement.

@Munawwar Munawwar requested a review from tngan February 15, 2024 13:10
@tngan tngan merged commit 14055ff into tngan:master Feb 23, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants