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 collection of color palettes in JavaScript (RequireJS, CommonJS, and global) array and .txt format
A collection of color palettes in JavaScript (RequireJS, CommonJS, and global) array and .txt format
Create a script tag for each color palette that you want to use:
<script src="bower_components/all-colors/lib/sites/ideaColorThemes/Tau Ceti/tauCeti.js"></script>
<script>
console.log(window.allColors.ideaColorThemes.tauCeti); //[ '#295622', '#bbbbbb', '#333333', ... ]
</script>
Array(s) of colors will be created in the window.allColors.<site name>.<palette name>
namespace.
var colors = require('all-colors');
console.log(colors.ideaColorThemes.tauCeti); //[ '#295622', '#bbbbbb', '#333333', ... ]
Every color palette array from every site will be created in the colors.<site name>.<palette name>
namespace.
define(['all-colors'], function(colors) {
console.log(colors.ideaColorThemes.tauCeti); //[ '#295622', '#bbbbbb', '#333333', ... ]
});
Every color palette array from every site will be created in the colors.<site name>.<palette name>
namespace.
npm install all-colors --save
bower install all-colors --save
FAQs
A collection of color palettes in JavaScript (RequireJS, CommonJS, and global) array and .txt format
The npm package all-colors receives a total of 0 weekly downloads. As such, all-colors popularity was classified as not popular.
We found that all-colors 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.