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.
A node module for accessing uclassify api (A free machine learning web service where you can easily create and use text classifier).
A node module for accessing uclassify api (A free machine learning web service where you can easily create and use text classifier).
var analytics = require('uclassify');
var analysis = new analytics("read_api_key","write_api_key");// The read and write api key can be obtained by creating an uclassify account in the https://www.uclassify.com for free..
//they provide 500 request for free daily..
//Ex: Here shown is a short news data that is being passed on and the response is as shown..
analysis.news_classifier({"data":["Genetic Factors May Contribute to Adverse Effects Produced by Synthetic Cannabinoids"]},function(err,data){
if(err){console.log(err);
}
else{
console.log(data);
}
});
//Response:
/*
[
{
"textCoverage": 0.818182,
"classification": [
{
"className": "Business",
"p": 7.29068e-7
},
{
"className": "Entertainment",
"p": 2.3082e-7
},
{
"className": "Fashion",
"p": 2.86937e-7
},
{
"className": "Finance",
"p": 2.72049e-7
},
{
"className": "Food",
"p": 0.0000305918
},
{
"className": "Global",
"p": 4.29919e-7
},
{
"className": "Health",
"p": 0.999962
},
{
"className": "Home",
"p": 0.00000118741
},
{
"className": "Men",
"p": 0.00000209058
},
{
"className": "Parents",
"p": 4.27748e-7
},
{
"className": "Sports",
"p": 2.48894e-7
},
{
"className": "Technology",
"p": 3.53696e-7
},
{
"className": "US",
"p": 8.36654e-7
},
{
"className": "Women",
"p": 3.83611e-7
}
]
}
]
*/
Install with npm
npm install uclassify
FAQs
A node module for accessing uclassify api (A free machine learning web service where you can easily create and use text classifier).
The npm package uclassify receives a total of 3 weekly downloads. As such, uclassify popularity was classified as not popular.
We found that uclassify 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.