Filter file scheme; disable http, https and ftp entirely
This commit is contained in:
parent
96bbc9d738
commit
e2d044e02b
4 changed files with 169 additions and 3 deletions
59
app/protocol_filter.js
Normal file
59
app/protocol_filter.js
Normal file
|
@ -0,0 +1,59 @@
|
|||
const path = require('path');
|
||||
|
||||
const FILE_SCHEME = /^file:\/\//;
|
||||
const WINDOWS_PREFIX = /^\/[A-Z]:/;
|
||||
function _urlToPath(targetUrl) {
|
||||
let withoutScheme = targetUrl.replace(FILE_SCHEME, '');
|
||||
if (WINDOWS_PREFIX.test(withoutScheme)) {
|
||||
withoutScheme = withoutScheme.slice(1);
|
||||
}
|
||||
|
||||
const withoutQuerystring = withoutScheme.replace(/\?.*$/, '');
|
||||
const withoutHash = withoutQuerystring.replace(/#.*$/, '');
|
||||
|
||||
return decodeURIComponent(withoutHash);
|
||||
}
|
||||
|
||||
function _createFileHandler({ userDataPath, installPath }) {
|
||||
return (request, callback) => {
|
||||
// normalize() is primarily useful here for switching / to \ on windows
|
||||
const target = path.normalize(_urlToPath(request.url));
|
||||
|
||||
if (!path.isAbsolute(target)) {
|
||||
return callback();
|
||||
}
|
||||
|
||||
if (!target.startsWith(userDataPath) && !target.startsWith(installPath)) {
|
||||
console.log(`Warning: denying request to ${target}`);
|
||||
return callback();
|
||||
}
|
||||
|
||||
return callback({
|
||||
path: target,
|
||||
});
|
||||
};
|
||||
}
|
||||
|
||||
function installFileHandler({ protocol, userDataPath, installPath }) {
|
||||
protocol.interceptFileProtocol(
|
||||
'file',
|
||||
_createFileHandler({ userDataPath, installPath })
|
||||
);
|
||||
}
|
||||
|
||||
// Turn off all browser web requests since we do all web requests via Node.js
|
||||
function _webHandler(request, callback) {
|
||||
return callback();
|
||||
}
|
||||
|
||||
function installWebHandler({ protocol }) {
|
||||
protocol.interceptFileProtocol('http', _webHandler);
|
||||
protocol.interceptFileProtocol('https', _webHandler);
|
||||
protocol.interceptFileProtocol('ftp', _webHandler);
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
_urlToPath,
|
||||
installFileHandler,
|
||||
installWebHandler,
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue