Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
xml-converter
Advanced tools
A module for converting between XML format and JavaScript objects.
npm i xml-converter
const { parseXML } = require( 'xml-converter' );
const xml = `<root>
<child>
<tag>string value</tag>
<tag>78</tag>
</child>
</root>`;
const object = parseXML( xml );
//object
{
root: [
{
value: '',
attrs: {},
self: false,
child: [
{
value: '',
attrs: {},
self: false,
tag: [
{
value: 'string value',
attrs: {},
self: false,
},
{
value: '78',
attrs: {},
self: false,
}
]
}
]
}
],
}
const { parseObject } = require( 'xml-converter' );
const object = {
root: [
{
value: '',
attrs: {},
self: false,
child: [
{
value: '',
attrs: {},
self: false,
tag: [
{
value: 'string value',
attrs: {},
self: false,
},
{
value: '78',
attrs: {},
self: false,
}
]
}
]
}
],
}
const xml = parseObject( object, 2 );
//xml
`<root>
<child>
<tag>string value</tag>
<tag>78</tag>
</child>
</root>`
Argument | Type | Description |
---|---|---|
xml | string | Valid xml string. |
Argument | Type | Description |
---|---|---|
object | object | Valid object described in the next section. |
indentSize | number | Indent size for xml string. |
Field | Type | Description |
---|---|---|
value | string | Value of the XML tag. |
attrs | object | Object with tag's attributes { attributeName: 'attributeValue' }. |
self | boolean | Flag indicating whether the tag is self-closing. |
[tag] | array | Array with child-tags with same tag name. |
//object
{
root: [ // root tag name
{ // object, root tag
value: '', // root tag value
attrs: {}, // root tag attributes
self: false,
child: [ // child tag name
{ // object, child tag
value: '', // child tag value...
attrs: {},
self: false,
tag: [
{
value: 'string value',
attrs: {},
self: false,
},
{
value: '78',
attrs: {},
self: false,
}
]
}
]
}
],
}
FAQs
A module for converting between XML format and JavaScript objects.
The npm package xml-converter receives a total of 0 weekly downloads. As such, xml-converter popularity was classified as not popular.
We found that xml-converter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.