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.
json-minifier
Advanced tools
A two-way JSON minifier to reduce JSON size and amount of data transferred on clients. Can also act as an obfuscator.
A two-way JSON minifier to reduce JSON size and amount of data transferred on clients. Can also act as an obfuscator.
npm install json-minifier
var specs = {
key: 'k',
MySuperLongKey: 'm',
SomeAnotherPropertyThatIsRealyLong: 's'
};
var minifier = require('json-minifier')(specs);
var json = minifier.minify({
SomeAnotherPropertyThatIsRealyLong: 1234,
MySuperLongKey: 'Home',
key: 0
});
/*
{ s: 1234,
m: 'Home',
k: 0 }
*/
console.log(json);
Using the json object from the previous exemple:
/*
{
SomeAnotherPropertyThatIsRealyLong: 1234,
MySuperLongKey: 'Home',
key: 0
}
*/
console.log(minifier.unminify(json));
You can implement your own, don't need to require our module or use browserify. Use the following snippet:
json
is your compressed json, and you exposed your compression table in the reverseJsonFilters
array.
function unzip(json) {
for (var key in json) {
if (typeof json[key] === 'object') {
unzip(json[key]);
}
if (reverseJsonFilters[key] !== undefined) {
json[reverseJsonFilters[key]] = json[key];
delete json[key];
}
}
}
FAQs
A two-way JSON minifier to reduce JSON size and amount of data transferred on clients. Can also act as an obfuscator.
The npm package json-minifier receives a total of 4 weekly downloads. As such, json-minifier popularity was classified as not popular.
We found that json-minifier demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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.