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.
node-git-hooks
Advanced tools
Git hooks are a powerful tool to help developers maintain consistency in their code. Unfortunately hooks are not part of the repository and thus require developers to manually set up and/or install them. There are a number of projects that address this, but they are not as automated, deployment-friendly, or cross-platform.
Instead of using shell scripts which are dependent on the OS, this project uses Node to abstract filesystem operations. This allows it to run on Linux, OSX, Windows, any OS supported by Node.
While automated installation of Git hooks is great for developers, it can cause
problems during deployment. If an npm package post-installs
hooks inside node_modules, build systems may throw the error
Appears to be a git repo or submodule
. This project will only copy hooks
if the .git
folder exists.
npm install node-git-hooks --save
Create a .githooks
folder and place hooks inside named corresponding to what they should be in .git/hooks
. For example, the script pre-commit
runs before a commit and is often used to perform linting.
Add the following postinstall
script to package.json:
"scripts": {
"postinstall": "node-git-hooks"
},
FAQs
Automate git hook deployment
The npm package node-git-hooks receives a total of 28,654 weekly downloads. As such, node-git-hooks popularity was classified as popular.
We found that node-git-hooks 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
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.