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.
Yet another static website generator built on top of Vue 2 and Webpack
npm run build # to generate your site in your defined directory
npm run serve # to watch your site live
and you can also build and run it with docker like this.
docker build -f devops/dockerfile.nginx -t seal .
docker run -d -p 80:80 seal
then you can check your site at http://localhost now, normally I would like to deploy it to VPS use a small script.
## deploy.sh
ssh <$user>@<$host> <<END
docker rmi \$(docker images --filter "dangling=true" -q --no-trunc)
rm -rf /tmp/
git clone git@github.com:metrue/Sira.git /tmp/seal
git clone https://github.com/metrue/Seal /tmp/seal
cd /tmp/seal
docker build -f devops/dockerfile.nginx -t seal .
docker run -d -p 80:80 seal
END
then put it into npm script, hit npm run deploy
to do the deployment. That's it, have fun.
inspired by vue-ghpages-blog
MIT
FAQs
Yet another static website generator built on top of Vue 2 and Webpack, with a nice comment system
The npm package cici receives a total of 1 weekly downloads. As such, cici popularity was classified as not popular.
We found that cici 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.