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.
A self indulgent coffeescript mock of redis.
It works for certain things. It should match the success behavior of the node_redis library. Failure behavior may not match, but we try to do something sane.
It's also very incomplete. I've implemented the basic things I need. I will try to add other things as well, but if it's missing things you need, send a PR.
Multiple instances of Mockis can share the same storage like such:
parent = new Mockis()
child = new Mockis()
parent.addChild(child)
child.set "foo", "bar", ->
parent.get "foo", (err, result) ->
result is "bar" # true
One important note about this is that if the child already has data, it will be lost. There is no merge.
Parents can have arbitrary numbers of children. The whole children of children thing can get wacky. Don't do it.
Contributions are totes welcome. When possible, please submit a PR for each command. This isn't a requirement, but it can streamline reviewing them.
All methods must call callbacks synchronously. Multi requires it.
Please create at least the most basic of tests for any command you add. Also, test only pull requests are greatly appreciated.
Apache 2.0
FAQs
A mock of redis
The npm package mockis receives a total of 1 weekly downloads. As such, mockis popularity was classified as not popular.
We found that mockis 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.