
Research
NPM targeted by malware campaign mimicking familiar library names
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.
$ npm install eqls
Check two objects/values to see if they deeply equal:
eqls('a', 'a') // => true
eqls('a', 'b') // => false
eqls(function () { return true }, function () { return true }) // => true
eqls(function () { return true }, function () { return false }) // => false
eqls({ a: 1 }, { a: 1 }) // => true
eqls({ a: 1 }, { a: 2 }) // => false
eqls({ a: 1 }, { a: 1, b: 2 }) // => false
eqls(1, '1') // => true
eqls('1', 1) // => true
eqls(Number('a'), Number('b')) // => false
eqls(1, Number('a')) // =>
eqls([1, 2, 3], [1, 2, 3]) // => true
eqls([1, 2, 3, 4], [1, 2, 3]) // => false
eqls([1, 2, 3], [4, 5, 6]) // => false
eqls(new Date('10:23 09/21/2014'), new Date('10:23 09/21/2014')) // => true
eqls(new Date('10:23 09/21/2014'), new Date('10:23:01 09/21/2014')) // => false
eqls({}, 1) // => false
eqls.contains({ a: 1, b: 2 }, { a: 1 }) // => true eqls.contains({ a: 1 }, { a: 1, b: 2 }) // => true eqls.contains({ a: 1, b: { a: 1, b: 2} }, { a: 1, b: { b: 2 } }) // => true eqls.contains([{ a: 1 }, { b: { a: 1, b: 2} }, { a: 1, b: { b: 2 } }], [{ a: 1, b: { b: 2 } }]) // => true
FAQs
```bash $ npm install eqls ```
The npm package eqls receives a total of 508 weekly downloads. As such, eqls popularity was classified as not popular.
We found that eqls 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
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.
Research
Socket's research uncovers three dangerous Go modules that contain obfuscated disk-wiping malware, threatening complete data loss.
Research
Socket uncovers malicious packages on PyPI using Gmail's SMTP protocol for command and control (C2) to exfiltrate data and execute commands.