mirror of
https://gitea.com/actions/setup-java.git
synced 2025-04-06 07:19:39 +00:00
sanitzie XML characters
This commit is contained in:
14
dist/index.js
generated
vendored
14
dist/index.js
generated
vendored
@ -4145,15 +4145,23 @@ function configAuthentication(id, username, password) {
|
||||
});
|
||||
}
|
||||
exports.configAuthentication = configAuthentication;
|
||||
function escapeXML(value) {
|
||||
return value
|
||||
.replace(/&/g, '&')
|
||||
.replace(/</g, '<')
|
||||
.replace(/>/g, '>')
|
||||
.replace(/"/g, '"')
|
||||
.replace(/'/g, ''');
|
||||
}
|
||||
// only exported for testing purposes
|
||||
function generate(id, username, password) {
|
||||
return `
|
||||
<settings>
|
||||
<servers>
|
||||
<server>
|
||||
<id>${id}</id>
|
||||
<username>${username}</username>
|
||||
<password>${password}</password>
|
||||
<id>${escapeXML(id)}</id>
|
||||
<username>${escapeXML(username)}</username>
|
||||
<password>${escapeXML(password)}</password>
|
||||
</server>
|
||||
</servers>
|
||||
</settings>
|
||||
|
Reference in New Issue
Block a user