Electron Ssl Pinning Save Abandoned

Prevents MITM in Electron applications

Project README

Electron SSL Pinning

Build Status Code Coverage

Prevents MITM in Electron applications.

What? MITM?

Installation

npm install electron-ssl-pinning

Usage

Retrive pinning config using following command

fetch-ssl-pinning-config google.com

Then apply this config to Electron session.

const { session } = require('electron');
const { createSslVerificator } = require('electron-ssl-pinning');

session.defaultSession.setCertificateVerifyProc(
  createSslVerificator([
    {
      domain: '*.google.com',
      fingerprints: [
        'sha256/fyFMxrkFMkcRq9nDQimG8gq8136Vbrzm5pQSMhRH2Os=',
        'sha256/vgzNVNTOzaG9Xl2ezIWgTCwfk6UiDXf96I/prQgfZBs='
      ]
    }
  ])
);

License

Apache-2.0

Open Source Agenda is not affiliated with "Electron Ssl Pinning" Project. README Source: dialogs/electron-ssl-pinning
Stars
51
Open Issues
3
Last Commit
4 years ago
License

Open Source Agenda Badge

Open Source Agenda Rating