GithubHelp home page GithubHelp logo

Comments (3)

will477 avatar will477 commented on May 16, 2024 2

Go into the artifacts of your AzDevOps build:

  • In AzDO, inside your pipline, click the job, then click on artifact.

You will find a file named msdo.sarif.

Inside that file, find the vulnerability you would like suppressed. In the below example, it is BinSkim rule BA2006 for the vulnprocess.exe file.

-- snip --
"results": [
-- snip --
{
"ruleId": "BA2006",
"ruleIndex": 2,
"level": "error",
"message": {
"id": "Error",
"arguments": [
"vulnprocess.exe",
"C (17.0.65501.17013), Cxx (17.0.65501.17013)",
"Microsoft (R) Optimizing Compiler : c -- snip --
\r\n"
]
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "file:///D:/a/1/a/SecureApplication/bin/Debug/binaries/vulnprocess.exe"
}
}
}
],
"fingerprints": {
"gdnPrimarySignature": "1111111111222222222233333333334444444444555555555566666666667777",
"gdnAlternativeSignature0": "2222222222111111111144444444443333333333666666666655555555557777"
}
},

In the root of your repository, create a file named .gdn/.gdnsuppress. Copy the gdnPrimarySignature, the portion of the artifactLocation uri that is relative to your repo root, and the ruleId as in the example below:
{
"version": "1.0.0",
"suppressionSets": {
"default": {
"name": "default",
"createdDate": "2020-08-25 21:30:26Z",
"lastUpdatedDate": "2021-04-06 19:07:13Z"
}
},
"results": {
"1111111111222222222233333333334444444444555555555566666666667777": {
"signature": "1111111111222222222233333333334444444444555555555566666666667777",
"target": "SecureApplication/bin/Debug/binaries/vulnprocess.exe",
"memberOf": [
"default"
],
"tool": "BinSkim",
"ruleId": "BA2006",
"justification": null,
"createdDate": "2023-04-14 00:58:36Z",
"expirationDate": null,
"type": null
}
}
}

Set the createdDate and lastUpdatedDate as appropriate. Also ensure the tool and ruleId matches the finding in the msdo.sarif file. The tool name can be found early in the msdo.sarif file.

Check this file in and rerun your build. Note that results is an array, so you can add additional suppressions as needed. I would also recommend that you set the expirationDate to the date you expect to have this fixed, as it specifies how long the suppression should stay in force.

from security-devops-azdevops.

aakanshaverma1310 avatar aakanshaverma1310 commented on May 16, 2024

@chrisnielsen-MS @will477 @dotpaul - Can you guide me how to suppress false positives for credscan.
I'm using below task for cred scan in azure devops pipeline.

      - task: MicrosoftSecurityDevOps@1
        displayName: Credential Scanner- CredScan
        inputs:
          categories: 'secrets'
          break: true

from security-devops-azdevops.

aakanshaverma1310 avatar aakanshaverma1310 commented on May 16, 2024

@chrisnielsen-MS @will477 @dotpaul - Any update on above?

from security-devops-azdevops.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.