Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Table of Contents

Overview

WhiteSource Diffend detects and blocks malicious dependency updates.

Diffend acts as a shield between you and the wild world of open-source libraries, allowing you to define policies around the usage of libraries and their versions. Under the hood, we run WhiteSource runs extensive security checks to find potential vulnerabilities and exploits.

When you run your package manager commands with our plugin, all of this knowledge, policies and research is are combined into one easy-to-understand verdict that you or your security team can use to control and mitigate potential problems before they hit production. The Diffend heuristics learn with each package release, and whenever we discover anything is discovered that would could pose a threat to your organization, we WhiteSource will notify you about it.

Info

WhiteSource Diffend supports Ruby (Bundler) and JavaScript (Yarn).

Configuring a New Prospect

Prerequisites: Register the account.

We understand, WhiteSource is aware that not everyone feels comfortable executing remote scripts. That is why there are two ways of setting up WhiteSource Diffend and you can choose which one suits you better. The end result is exactly the same, since the script just automates the files configuration.

Info

The .diffend.yml file can be safely committed and shared in both closed-source and open-source projects.

With our UI

  1. Navigate to your organization projects list.

  2. Click the Setup button.

  3. In the setup view, navigate to the By applying changes manually section.

  4. To set up WhiteSource Diffend, create a .diffend.yml file in the main directory of the project and copy-paste the configuration settings from the UI.

  5. Follow the remaining instructions specific to the package manager you are using.

Bundler setup

  1. Add our bundler plugin and our gem right after the source section of your Gemfile.

  2. bundle install and you are ready to go!

Yarn 2 setup

  1. Add our Yarn plugin to the .yarn directory of your project by running the following code:

  2. Add the following lines to your .yarnrc file:

  3. Run yarn install and you are ready to go!

Info

Setting up an account using the UI does not require a big effort.

With our setup script (Ruby only)

This script will add a .diffend.yml configuration file and will add our plugin to your Gemfile.

...

Info

The easiest way to set up your project is to run the install script and follow the instructions.

Running Diffend Checks

WhiteSource Diffend plugin runs automatically when the following commands are executed:

...

Info

WhiteSource Diffend works automatically each time you run bundle commands.

Reviewing and Understanding the Security Verdicts

Security verdicts are an essential part of WhiteSource Diffend. They ensure that all of your organization requirements in the context of each bundle operation are met. That way we can prevent the usage of packages and their versions that could cause engineering and legal harm.

...

Info

You should review any non-allow verdicts that we tell you about.

Setting up maximum verdict for particular commands

When using WhiteSource Diffend in a legacy system, you may notice, that getting things to a stable and secure state may take a while.

...

Info

You can use our Quality Score to keep track of the improvement of your dependencies setup.

Understanding Quality Score

Quality Score is a numeric value in between 0 and 100 that is supposed to give you a quick overview of the state of your Gemfile.

...

Info

You can use our Quality Score to keep track of the improvements of your Gemfile.

Re-running checks from the UI

When you apply changes to your configuration, you may want to check how it affects the bundling process you were running. You can either run the given command you were interested in again to see a new verdict or you can re-run the checks directly from the UI, by clicking on the Re-run checks button.

...

Info

Re-running checks is the easiest way to see how your changes will affect execution of the given command.

Continuous Integration and Delivery environment setup

WhiteSource Diffend protects every crucial bundle command out of the box, but you can still easily set it up as a separate step within your Continuous Integration and Delivery system.

...

To set it up, please follow the instructions for the appropriate CI/CD system.

Github Actions

...

CircleCI

...

Other

If you are using a different CI system, the setup should be similar. Please contact us if you have examples of other CI systems.

Deployment and production environment setup

WhiteSource Diffend requires minimal effort to make it work with the majority of ways you can deploy your applications. If there are no hints below for your way of deployment, it means, that all you need to do is:

...

You need to remember about setting the DIFFEND_ENV to match your environment.

...

Capistrano

Please make sure, to always run bundle install instead of running bundle check. To do so, put the following code in your deploy.rb file:

...

Info

The changes you need to make, come from limitations of the Bundler plugin system.

Docker

Please make sure, that the .diffend.yml file is included before you run any bundle commands during the container build process.

...

Info

.diffend.yml file needs to be present before running any bundle commands.

Heroku

When using Heroku, please make sure, that the .diffend.yml file is included before you run any bundle commands during the container build process.

...

Info

Heroku Buildpack for Ruby requires you to set the three environment variables mentioned above.

Notifications

Diffend monitor gem keeps track of the state of your deployment environments automatically.

...

Info

Notifications are a great way to make sure, that your team becomes aware of emerging vulnerabilities the moment they are detected.

Connecting WhiteSource Diffend to Slack

  1. Navigate to the Notifications settings page of your organization.

  2. Press the here link visible in the information box. You will be redirected to the Slack platform settings page.

  3. Select a channel where you want WhiteSource Diffend to post security notifications and press the Allow button.

  4. You will be redirected back to the WhiteSource Diffend notification settings page and a Slack welcome message will be sent to your workspace channel.

Notifications events

WhiteSource Diffend sends messages based on events that occur while protecting your applications. Below you can find a list of the events that trigger notifications, together with their short descriptions and other useful details.

Event name

Event type

Command

Environment

Description

New bundle state detected

Information

bundle exec

Other than development and test

WhiteSource Diffend emits message based on this event whenever you deploy changed to your Gemfile that affect given environment.

Awareness of newly updated libraries deployed can help you debug when your new code presents unexpected behaviors.

New verdict detected

Warning

bundle exec

Other than development and test

WhiteSource Diffend emits a message based on this event whenever the verdict associated with your deployment has changed.

Bundle secure execution alert

Warning

bundle secure

Any

WhiteSource Diffend emits a message based on this event whenever there is anything in your Gemfile that requires attention.

Uninstalling

While we are sorry to see you go, we won't make things hard for you. We just kindly ask you to provide us with any feedback you might have on the reasons.

Removing Bundler plugin and gem

Due to some Bundler limitations, you will have to re-bundle your project after removing appropriate files. Just run the code below inside of your project main directory.

...

Removing Yarn 2 plugin

Due to some Yarn 2 limitations, you will have to re-run the install command after removing appropriate files. Just run the code below inside of your project main directory.

...

Questions and answers

Can the .diffend.yml file be committed into our repository version control system?

...