Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@nodesecure/ci
Advanced tools
This package is available in the Node Package Repository and can be easily installed with npm or yarn.
$ npm i @nodesecure/ci
# or
$ yarn add @nodesecure/ci
@nodesecure/ci brings together a set of tools to identify dependencies vulnerabilities and track most common malicious code and patterns.
Before going further, here is an overview of the available features depending on your project configuration:
Static Analysis | Compatibility |
---|---|
JavaScript | ✅ |
TypeScript | ❌ |
Static Analysis is powered by @nodesecure/js-x-ray and @nodesecure/scanner.
For now, TypeScript can't directly be analyzed on the fly. However as you might know, any transpiled TypeScript code is JavaScript code hence can be analyzed. Moreover, it is recommended to launch the Static Analysis with a source code state as close as possible to the state of your production code (and before minification). In fact, you want to make sure that you are not introducing anything malicious when you're compiling your code at some point (for production or when transpiling with TypeScript).
Vulnerabilities Strategy | package-lock.json | yarn.lock | npm-shrinkwrap.json | none |
---|---|---|---|---|
npm | ✅ | ❌ | ✅ | ❌ |
snyk | ✅ | ✅ | ✅ | ✅ |
sonatype | ✅ | ✅ | ✅ | ✅ |
[DEPRECATED] node | ✅ | ✅ | ✅ | ✅ |
Vulnerabilities strategies are powered by @nodesecure/vulnera.
@nodesecure/ci can be used as a Script, as an API or through the GitHub action
Let's see how to use @nodesecure/ci in these three different ways:
@nodesecure/ci exposes its pipeline runner as an API to allow use in any other combined workflow.
import { runPipeline } from "@nodesecure/ci";
const optionsExample = {
directory: process.cwd(),
strategy: "sonatype",
vulnerabilities: "medium",
warnings: {
"unsafe-regex": "error",
"obfuscated-code": "warning",
"encoded-literal": "off"
},
reporters: ["console"]
};
await runPipeline(optionsExample);
// => the process can either exit with error code (1)
// or no error code (0), depending on the pipeline status.
If you need a more fine-grained control over the pipeline process, you can provide an autoExitAfterFailure property to the entry point options to manually exit or interpret the returned payload.
const { status, data } = await runPipeline({ autoExitAfterFailure: false });
if (status === "success") {
console.log("Congrats, your code passed all security checks!");
} else {
console.log("Whoops, the pipeline failed to pass all checks :(");
// Interpret the data to explain why it failed
}
First, reference the nsci .bin in the package.json
{
"scripts": {
"nsci": "nsci"
}
}
Then run it
$ npm run nsci
Once the script is run, the @nodesecure/ci pipeline will look for dependencies warnings and vulnerabilities in the current working directory. If any warning or dependency is met, the pipeline will eventually fail depending on the provided .nodesecurerc file.
The documentation of the @nodesecure/ci GitHub Action is detailed here
A custom configuration can now be provided using the brand new .nodesecurerc config file.
When a .nodesecurerc file is present in the project it will take priority over any other configuration provided (through the CLI or when using the API).
To generate this file, the best way is to use the init command exposed by the CLI.
$ npm run nsci init
Here is the content of the .nodesecurerc file generated by default:
{
"version": "1.0.0",
"i18n": "english",
"strategy": "npm",
"ci": {
"reporters": ["console"],
"vulnerabilities": {
"severity": "medium"
},
"warnings": "error"
}
}
In the same way as for the other types of configuration (API/CLI), warnings can be specifically configured to enable a custom analysis. When you configure a custom warnings section, only the warnings specified in that section will be used by the runner.
{
"version": "1.0.0",
"i18n": "english",
"strategy": "npm",
"ci": {
"reporters": ["console"],
"vulnerabilities": {
"severity": "medium"
},
"warnings": {
"unsafe-regex": "error",
"obfuscated-code": "warning",
"encoded-literal": "off"
}
}
}
If you don't have the possibility to generate a .nodesecurerc file, there are three other configuration options left:
The idea is to provide same options for all types of configuration. Nevertheless for now, the specific way to set a warnings dictionary (other than "error" | "warning" | "off" options) is only available when using the .nodesecurerc or API configurations.
During your NodeSecure journey it's possible that you'll find false positives. The .nodesecureignore
is the perfect tool to address these cases.
Let's say that you want to exclude "unsafe-regex"
from express
:
Create your .nodesecureignore
file at the root of your project
Add the following JSON content:
{
"warnings": {
"unsafe-regex": ["express"]
}
}
unsafe-regex
for express
package.Found the list of warnings available here
Add CLI options directly in the package.json script
{
"scripts": {
"nsci": "nsci --directory=/Users/user1/myproject"
}
}
Or provide it from the "npm run [script]" command (don't forget to supply "--") or the params will be applied to the "npm run [script]" command.
$ npm run nsci -- --directory=/Users/user1/myproject
$ npm run nsci -- --strategy=npm
$ npm run nsci -- --vulnerability=medium
$ npm run nsci -- --warnings=error
$ npm run nsci -- --reporters=console
Or use yarn (params are provided to the target script by default)
$ yarn nsci --reporters=console
To see all available options, you can run:
$ npm run nsci -- --help
import { runPipeline } from "@nodesecure/ci";
const optionsExampleWithGlobalWarningsRule = {
directory: process.cwd(),
strategy: "sonatype",
vulnerabilities: "medium",
// any warning met will be reported as an "error" hence will make the pipeline fail
warnings: "error",
reporters: ["console"]
};
const optionsExampleWithCustomWarningsRules = {
directory: process.cwd(),
strategy: "sonatype",
vulnerabilities: "medium",
/**
* Set custom rules for specific types of warnings.
* Only "unsafe-regex" warnings can make the pipeline fail.
* "obfuscated-code" warnings will be reported but ignored by the pipeline checks.
* "encoded-literal" is neither reported or included in the pipeline checks.
*/
warnings: {
"unsafe-regex": "error",
"obfuscated-code": "warning",
"encoded-literal": "off"
},
reporters: ["console"]
};
await runPipeline(optionsExample);
// => the process can either exit with error code (1)
// or no error code (0), depending on the pipeline checks status.
Given that it's possible to mix configurations between the one defined in .nodesecurerc and the one defined either through the API or CLI, it is important to understand the order in which the options will be chosen.
Priority | Type of configuration |
---|---|
1️⃣ | .nodesecurerc |
2️⃣ | CLI or API (can't be both at the same time) |
Anything valid and defined in the .nodesecurerc file will be used no matter what options are defined in the CLI or the API. However if anything is missing in the .nodesecurerc file, options provided from the CLI or API can naturally complete the runtime configuration.
Two reporters are targeted to work with the @nodesecure/ci. For now, only the "Console" reporter is available.
Thanks goes to these wonderful people (emoji key):
Antoine 💻 📖 🚧 | Tony Gorez 💻 📖 | PierreD 💻 📖 🚧 | Gentilhomme 🚧 👀 | Kouadio Fabrice Nguessan 🚧 | Yefis 🚧 | halcin 💻 |
MIT
FAQs
NodeSecure tool enabling secured continuous delivery
The npm package @nodesecure/ci receives a total of 3 weekly downloads. As such, @nodesecure/ci popularity was classified as not popular.
We found that @nodesecure/ci demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.