Skip to content

Instantly share code, notes, and snippets.

View thetminko's full-sized avatar
💬

Thet Min Ko thetminko

💬
View GitHub Profile
@thetminko
thetminko / axios.js
Created November 15, 2023 05:36 — forked from arvindkumarbadwal/axios.js
Axios SSL Certificate Pinning
const tls = require('tls');
const https = require('https');
const crypto = require('crypto');
const axios = require('axios');
function sha256(s) {
return crypto.createHash('sha256').update(s).digest('base64');
}
const options = {