Bu güvenlik açıkları nasıl düzeltilir? (npm denetim düzeltmesi bu güvenlik açıklarını gideremez)


9

Projemde 6 yüksek güvenlik açığı var ve bunları nasıl düzeltebileceğim hakkında hiçbir fikrim yok. npm denetim düzeltmesi başarısız. Lütfen bunu düzeltmeme yardım et.

Projeme https://www.npmjs.com/package/toastr yükledim ve kurulduktan sonra güvenlik açıkları gösterildi. Herhangi bir bağlantı olduğunu bilmiyorum. === npm denetim güvenlik raporu ===

                             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
angular  npm 

Yanıtlar:


10

1) npm i - kaydetme-dev npm-kuvvet-çözünürlükleri

2) Bunu paketinize ekleyin. Json

"kararlar": {"https-proxy-agent": "^ 3.0.0"}

3) npm-force-çözünürlükleri bir şey yapsın

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

4) Denetim npm denetiminizi yeniden çalıştırın.

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


1
Bu çözüm yalnızca bir süre çalışır ve yine aynı sorun ortaya çıkar

2

BUILD sorunlarını ve genel kurulum sorunlarını giderir :

package.json

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

Sonra npm installsadece cmdveya yerine çalıştırın Dockerfile:

npm run resolve-install

Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.