LogoLogo
Book a Demo
  • Introduction
  • Getting Started
    • Install
    • Configuration - General
    • Configuration - Code
    • Configuration - Dependencies
    • Configuration - Containers
    • Configuration - Secrets
    • Configuration - Attack Surface Monitoring
  • Features
    • Code Scanning
      • Custom Rules
      • Supported Languages
    • Dependency Scanning
      • Supported Package Managers
    • Secrets Scanning
      • Supported Secret Types
      • Confidential Information
    • Web App Penetration Testing
      • Quickstart
      • Supported Applications
      • Apps in Private Networks
      • Custom Rules
    • Orchestration
  • Integrations
    • GitHub
      • Repository Issue Dashboards
    • Bitbucket
      • Repository Dashboards
    • Slack
      • Install
    • Jira
      • Install
      • Configuration
      • Assignee
      • Priorities
      • Manual Ticket Creation
    • AWS
      • Prerequisites
      • Configuration
  • API Reference
    • Nullify API
      • Authentication
      • Pagination
      • Admin
      • Code Scanning (SAST)
      • Dependency Scanning (SCA)
      • Secrets Scanning
      • Dynamic Scanning (DAST)
  • Enterprise Tier
    • GitHub Install
    • Azure DevOps Install
  • More Info
    • About Us
    • Latest Updates
    • Security
    • Data Handling Policy
Powered by GitBook

© 2023 Nullify | All Rights Reserved.

On this page
  • Auto Fix
  • Ignore Findings

Was this helpful?

  1. Getting Started

Configuration - Dependencies

Auto Fix

This setting controls the creation of pull requests to fix vulnerabilities in project dependencies.

To enable automatic creation of dependency fix pull requests, set dependencies.auto_fix.enabled to true. You can also set the maximum number of open pull requests per repository with the dependencies.auto_fix.max_pull_requests_open key. You can also set the maximum rate of pull request creation with the dependencies.auto_fix.max_pull_request_creation_rate key.

dependencies:
  auto_fix:
    enabled: true
    max_pull_requests_open: 2
    max_pull_request_creation_rate:
      count: 2
      days: 7

Ignore Findings

To allowlist CVEs add them to the ignore list. The dependencies.ignore[i].repositories list is only applicable in the global configuration file.

dependencies:
  ignore:
    - cve: CVE-2021-1234
      reason: This is a false positive
    - cve: CVE-2021-5678
      reason: This isn't exploitable in client applications but we should update it eventually
      # optional expiry date
      expiry: "2024-09-12T00:00:00Z"
      # optional repositories filter
      repositories:
        - dast-action
        - cli
PreviousConfiguration - CodeNextConfiguration - Containers

Last updated 1 year ago

Was this helpful?