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.
Android String Resource XML strings.xml
Parser
import {promises as fs} from "fs";
import rdotjson from "rdotjson";
const xml = await fs.readFile("strings.xml");
const R = await rdotjson(xml);
console.log(R.string.app_name); // => "MyApp"
const fs = require("fs");
const rdotjson = require("rdotjson");
const xml = fs.readFileSync("strings.xml");
rdotjson(xml, (err, R) => {
if (err) throw err;
console.log(R.string.app_name); // => "MyApp"
});
<resources>
<string name="app_name">MyApp</string>
<string name="action_settings">Settings</string>
</resources>
{
"string": {
"app_name": "MyApp",
"action_settings": "Settings"
}
}
R.array
- Array: <string-array name="key"><item>string</item></string-array>
R.bool
- Boolean: <bool name="key">true</bool>
R.color
- String: <color name="key">#3F51B5</color>
R.dimen
- String: <dimen name="key">16dp</dimen>
R.integer
- Number: <integer name="key">75</integer>
R.string
- String: <string name="key">string</string>
rdotjson(xml, options, callback);
xml
{String|Buffer|Stream} - required.options
{Object} - optional.callback
{Function} - function(err, R) {...}
{attr: true}
- add attr
property which includes XML attributes.{comment: 'post'}
- include postpositive XML comments located after elements.{comment: 'pre'}
- include prepositive XML comments located before elements.{comment: 'right'}
- include right-side XML comment within the same line.{exclude: '*_android'}
- specify key names to exclude. Wildcard available.{objectMode: true}
- use plain object container: {value: value}
instead of primitives.{xml: true}
- preserve raw XML strings, instead of plain text parsed.const R = await rdotjson(xml, {objectMode: true});
console.log(R.string.app_name.value); // => "MyApp"
console.log(JSON.stringify(R, null, 2));
{
"string": {
"app_name": {
"value": "MyApp"
},
"action_settings": {
"value": "Settings"
}
}
}
Bundled formatters json
and csv
available.
const R = await rdotjson(xml);
const format = rdotjson.format("json");
const json = format(R, {space: 0});
console.log(json);
// => {"string":{"app_name":"MyApp","action_settings":"Settings"}}
const R = await rdotjson(xml);
const format = rdotjson.format("csv");
const csv = format(R);
console.log(csv);
// => string,action_settings,Settings
// string,app_name,MyApp
rdotjson app/src/main/res/values/strings.xml > strings.json
rdotjson app/src/main/res/values/*.xml > r.json
rdotjson app/src/production/res/values/*.xml > r_production.json
rdotjson app/src/develop/res/values/*.xml > r_develop.json
rdotjson app/src/main/res/values/strings.xml --format=csv > strings.csv
--comment=post
- include postpositive XML comments located after elements--comment=pre
- include prepositive XML comments located before elements--comment=right
- include right-side XML comment within the same line--exclude='*_android'
- specify key names to exclude. Wildcard available.--format=json
- specify output format. default: json
--objectMode
- use a plain object container {value: value}
instead of primitives--output=R.json
- output filename. default: STDOUT
--space=2
- JSON indent. default: 2--version
- show rdotjson version.--xml
- preserve raw XML strings, instead of plain text parsed-
- input XML from STDIN
--format=csv --output=R.csv
- CSV--format=json --output=R.json
- JSON--format=rdotswift --output=R.swift
- Swift (rdotswift module required)The MIT License (MIT)
Copyright (c) 2016-2024 Yusuke Kawasaki
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Android String Resource XML (strings.xml) Parser
The npm package rdotjson receives a total of 28,323 weekly downloads. As such, rdotjson popularity was classified as popular.
We found that rdotjson demonstrated a healthy version release cadence and project activity because the last version was released less than 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.