Added two security improvements as mentioned at http://electron.atom.io/docs/all/#checklist

This commit is contained in:
Kolja Lampe
2016-07-22 23:03:03 +02:00
parent 04fe0fd336
commit 54849d6859
2 changed files with 15 additions and 2 deletions

View File

@@ -1,5 +1,9 @@
'use strict';
window.eval = global.eval = function() {
throw new Error("Sorry, Mattermost does not support window.eval() for security reasons.");
}
const React = require('react');
const ReactDOM = require('react-dom');
const ReactBootstrap = require('react-bootstrap');
@@ -417,7 +421,7 @@ var MattermostView = React.createClass({
// Need to keep webview mounted when failed to load.
return (<div>
{ errorView }
<webview id={ this.props.id } className="mattermostView" style={ this.props.style } preload="webview/mattermost.js" src={ this.props.src } ref="webview"></webview>
<webview id={ this.props.id } className="mattermostView" style={ this.props.style } preload="webview/mattermost.js" src={ this.props.src } ref="webview" nodeintegration="false"></webview>
</div>);
}
});