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.
naughty-words
Advanced tools
An npm package to use the List-of-Dirty-Naughty-Obscene-and-Otherwise-Bad-Words
A Javascript package to use the List-of-Dirty-Naughty-Obscene-and-Otherwise-Bad-Words
You can add the list to your client side project using Bower.
$ bower install --save naughty-words
You can add the list to your Javascript project using NPM.
$ npm install --save naughty-words
In the browser you can use the json files directly with a get request:
<script src="https://code.jquery.com/jquery-2.2.3.min.js"></script>
<script>
var deutsche;
$.getJSON("bower_components/naughty-words/de.json", function (deutsche) {
console.log(deutsche);
});
</script>
You can require the json file directly.
var deutsche = require("naughty-words/de.json");
console.log(deutsche);
You can browse the languages by requiring the whole module.
var words = require("naughty-words");
console.log(words);
console.log(words.de);
FAQs
An npm package to use the List-of-Dirty-Naughty-Obscene-and-Otherwise-Bad-Words
The npm package naughty-words receives a total of 7,147 weekly downloads. As such, naughty-words popularity was classified as popular.
We found that naughty-words demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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.