Comment corriger ces vulnérabilités? (Le correctif d'audit npm ne parvient pas à corriger ces vulnérabilités)

9

Mon projet comporte 6 vulnérabilités de gravité élevée et je ne sais pas comment les corriger. Le correctif d'audit npm échoue. Veuillez m'aider à résoudre ce problème.

J'installais https://www.npmjs.com/package/toastr sur mon projet et après l'installation, les vulnérabilités ont été affichées. Je ne sais pas s'il y a un lien. === npm rapport de sécurité d'audit ===

                             Manual Review                                  
         Some vulnerabilities require your attention to resolve             

      Visit https://go.npm.me/audit-guide for additional guidance           


High            Machine-In-The-Middle                                         

Package         https-proxy-agent                                             

Patched in      >=3.0.0                                                       

Dependency of   @angular/cli [dev]                                            

Path            @angular/cli > @schematics/update > pacote >                  
                make-fetch-happen > https-proxy-agent                         

More info       https://npmjs.com/advisories/1184                             
High            Machine-In-The-Middle                                         

Package         https-proxy-agent                                             

Patched in      >=3.0.0                                                       

Dependency of   @angular/cli [dev]                                            

Path            @angular/cli > pacote > make-fetch-happen >                   
                https-proxy-agent                                             

More info       https://npmjs.com/advisories/1184                             
High            Machine-In-The-Middle                                         

Package         https-proxy-agent                                             

Patched in      >=3.0.0                                                       

Dependency of   @angular/cli [dev]                                            

Path            @angular/cli > @schematics/update > pacote >                  
                npm-registry-fetch > make-fetch-happen > https-proxy-agent    

More info       https://npmjs.com/advisories/1184                             
High            Machine-In-The-Middle                                         

Package         https-proxy-agent                                             

Patched in      >=3.0.0                                                       

Dependency of   @angular/cli [dev]                                            

Path            @angular/cli > pacote > npm-registry-fetch >                  
                make-fetch-happen > https-proxy-agent                         

More info       https://npmjs.com/advisories/1184                             
High            Machine-In-The-Middle                                         

Package         https-proxy-agent                                             

Patched in      >=3.0.0                                                       

Dependency of   protractor [dev]                                              

Path            protractor > browserstack > https-proxy-agent                 

More info       https://npmjs.com/advisories/1184                             
High            Machine-In-The-Middle                                         

Package         https-proxy-agent                                             

Patched in      >=3.0.0                                                       

Dependency of   protractor [dev]                                              

Path            protractor > saucelabs > https-proxy-agent                    

More info       https://npmjs.com/advisories/1184

la source

Réponses:

10

1) npm i --save-dev npm-force-resolution

2) Ajoutez ceci à votre package.json

"résolutions": {"https-proxy-agent": "^ 3.0.0"}

3) Laissons npm-force-resolution faire sa chose

rm -r node_modules
npx npm-force-resolutions
npm install

4) relancez votre audit audit npm.

Police: https://github.com/TooTallNate/node-https-proxy-agent/issues/84#issuecomment-543884972

José Luiz Gonzaga Neto
la source
1
Cette solution ne fonctionne que pendant un certain temps et le même problème se pose à nouveau
2

Corrections CONSTRUIRE problèmes et des problèmes d'installation généraux:

package.json

{
  ...
  "scripts": {
     "resolve-install": "npx npm-force-resolutions && npm install"
  },
  "resolutions": {
    "https-proxy-agent": "^3.0.0"
  }
}

Ensuite, au lieu de npm installsimplement exécuter cmdou Dockerfile:

npm run resolve-install
Kevin Upton
la source