Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@dword-design/endent
Advanced tools
An ES6 string tag that makes indentation right, adds some key features to dedent.
import dedent from "dedent"
import endent from "endent"
var someobj = {
contact: {
jack: 123456,
tom: 654321
},
color: "blue"
}
var somejson = '["bear", "fish", "dog", "cat"]'
var awfulTmpl = dedent`
function store (state, emitter) {
state["someobj"] = ${JSON.stringify(someobj, null, 2)}
state["somejson"] = ${JSON.stringify(JSON.parse(somejson), null, 2)}
}
`
// use endent.pretty(value) when value is object or array.
var prettyTmpl = endent`
function store (state, emitter) {
state["someobj"] = ${endent.pretty(someobj)}
state["somejson"] = ${somejson}
}
`
console.log(awfulTmpl + "\n\n" + prettyTmpl)
// awfulTmpl
function store (state, emitter) {
state["someobj"] = {
"contact": {
"jack": 123456,
"tom": 654321
},
"color": "blue"
}
state["somejson"] = [
"bear",
"fish",
"dog"
]
}
// prettyTmpl
function store (state, emitter) {
state["someobj"] = {
"contact": {
"jack": 123456,
"tom": 654321
},
"color": "blue"
}
state["somejson"] = [
"bear",
"fish",
"dog",
"cat"
]
}
var dependencies = ['jquery', 'underscore', 'bootstrap']
var dependencyTmpl = ``
dependencies.forEach((d, i) => {
dependencyTmpl += `var ${d} = require("${d}")\n`
})
var awfulTmpl = dedent`
;(function () {
${dependencyTmpl}
})()
`
var prettyTmpl = endent`
;(function () {
${dependencyTmpl}
})()
`
console.log(awfulTmpl + "\n\n" + prettyTmpl)
// awfulTmpl
;(function () {
var jquery = require('jquery')
var underscore = require('underscore')
var bootstrap = require('bootstrap')
})()
// prettyTmpl
;(function () {
var jquery = require('jquery')
var underscore = require('underscore')
var bootstrap = require('bootstrap')
})()
MIT
FAQs
➡️ An ES6 string tag that makes indentation right
We found that @dword-design/endent 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.