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.
基于HTTP/2模块和async/await关键字的web框架,支持功能:
#全局请使用 npm install -g awix
npm install awix
git clone此仓库,然后引入awix.js文件。
const awix = require('awix');
var srv = new awix({
debug : false
});
srv.config.https_on = true;
srv.config.key = './localhost.key.pem';
srv.config.cert = './localhost.cert.pem';
var {router} = srv;
router.get('/' async rr => {
rr.res.data = 'success';
});
//使用run接口只会启动一个进程,daemon会使用cluster集群。
srv.daemon(8118);
FAQs
a powerful web framework, build on module http2 and async/await.
The npm package awix receives a total of 3 weekly downloads. As such, awix popularity was classified as not popular.
We found that awix 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.