Skip to content
Snippets Groups Projects
Unverified Commit 5ab8cc62 authored by xgui3783's avatar xgui3783 Committed by GitHub
Browse files

Merge pull request #282 from HumanBrainProject/feat/csp

Introduce Content-Security-Policy to IAV
parents b5bb3022 0c104e45
No related branches found
No related tags found
No related merge requests found
......@@ -49,6 +49,11 @@ app.use(session({
store
}))
/**
* configure CSP
*/
require('./csp')(app)
/**
* configure Auth
* async function, but can start server without
......
const csp = require('helmet-csp')
const bodyParser = require('body-parser')
let ALLOWED_DEFAULT_SRC, DATA_SRC
try {
ALLOWED_DEFAULT_SRC = JSON.parse(process.env.ALLOWED_DEFAULT_SRC || '[]')
} catch (e) {
console.warn(`parsing ALLOWED_DEFAULT_SRC error ${process.env.ALLOWED_DEFAULT_SRC}`, e)
ALLOWED_DEFAULT_SRC = []
}
try {
DATA_SRC = JSON.parse(process.env.DATA_SRC || '[]')
} catch (e) {
console.warn(`parsing DATA_SRC error ${process.env.DATA_SRC}`, e)
DATA_SRC = []
}
const defaultAllowedSites = [
"'self'",
'*.apps.hbp.eu',
'*.apps-dev.hbp.eu'
]
const dataSource = [
"'self'",
'*.humanbrainproject.org',
'*.humanbrainproject.eu',
'*.fz-juelich.de',
...DATA_SRC
]
module.exports = (app) => {
app.use(csp({
directives: {
defaultSrc: [
...defaultAllowedSites
],
styleSrc: [
...defaultAllowedSites,
'*.bootstrapcdn.com',
'*.fontawesome.com',
"'unsafe-inline'" // required for angular [style.xxx] bindings
],
fontSrc: [ '*.fontawesome.com' ],
connectSrc: [
...defaultAllowedSites,
...dataSource
],
scriptSrc:[
"'self'",
'*.apps.hbp.eu',
'*.apps-dev.hbp.eu',
'*.jquery.com',
'*.cloudflare.com',
'unpkg.com',
'*.unpkg.com',
'*.jsdelivr.net',
...ALLOWED_DEFAULT_SRC
],
reportUri: '/report-violation'
},
reportOnly: true
}))
app.post('/report-violation', bodyParser.json({
type: ['json', 'application/csp-report']
}), (req, res) => {
if (req.body) {
console.warn(`CSP Violation: `, req.body)
} else {
console.warn(`CSP Violation: no data received!`)
}
res.status(204).end()
})
}
\ No newline at end of file
......@@ -17,6 +17,7 @@
"body-parser": "^1.19.0",
"express": "^4.16.4",
"express-session": "^1.15.6",
"helmet-csp": "^2.8.0",
"jszip": "^3.2.1",
"jwt-decode": "^2.2.0",
"memorystore": "^1.6.1",
......
......@@ -14,41 +14,14 @@
</head>
<body>
<atlas-viewer>
<h1 style = "text-align:center;">
<span class = "homeAnimationDots loadingAnimationDots">&bull;</span>
<span class = "homeAnimationDots loadingAnimationDots">&bull;</span>
<span class = "homeAnimationDots loadingAnimationDots">&bull;</span>
<h1 class="text-center">
<span class="homeAnimationDots loadingAnimationDots">&bull;</span>
<span class="homeAnimationDots loadingAnimationDots">&bull;</span>
<span class="homeAnimationDots loadingAnimationDots">&bull;</span>
</h1>
</atlas-viewer>
<script>
/**
* Catching Safari 10 bug:
*
* https://bugs.webkit.org/show_bug.cgi?id=171041
*
*/
try{
eval('(()=>{\
let e = e => {\
console.log(e);\
for(let e of [1,2,3]){\
console.log(e);\
}\
}\
})()')
}catch(e){
console.log(e)
const warning = 'Your browser cannot display the interactive viewer. Please use either Chrome >= 56 and/or Firefox >= 51'
console.log(warning)
const warningEl = document.createElement('h4')
warningEl.innerHTML = warning
const el = document.getElementsByTagName('atlas-viewer')
if(el.length > 0){
document.body.removeChild(el[0])
}
document.body.appendChild(warningEl)
}
<script src="testSafari.js">
</script>
</body>
</html>
import 'zone.js'
import 'third_party/testSafari.js'
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'
import { MainModule } from './main.module';
import { enableProdMode } from '@angular/core';
......
import 'zone.js'
import 'reflect-metadata'
import 'third_party/testSafari.js'
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'
import { MainModule } from './main.module';
......
/**
* Catching Safari 10 bug:
*
* https://bugs.webkit.org/show_bug.cgi?id=171041
*
*/
(function(){
try{
eval('(()=>{\
let e = e => {\
console.log(e);\
for(let e of [1,2,3]){\
console.log(e);\
}\
}\
})()')
} catch (e) {
console.log(e)
const warning = 'Your browser cannot display the interactive viewer. Please use either Chrome >= 56 and/or Firefox >= 51'
console.log(warning)
const warningEl = document.createElement('h4')
warningEl.innerHTML = warning
const el = document.getElementsByTagName('atlas-viewer')
if(el.length > 0){
document.body.removeChild(el[0])
}
document.body.appendChild(warningEl)
}
})()
\ No newline at end of file
......@@ -19,7 +19,7 @@ module.exports = merge(staticAssets, {
module: {
rules: [
{
test : /export_nehuba.*?\.js$|worker\.js/,
test : /third_party.*?\.js$|worker\.js/,
use : {
loader : 'file-loader',
options: {
......@@ -30,7 +30,7 @@ module.exports = merge(staticAssets, {
{
test: /(?:\.ngfactory\.js|\.ngstyle\.js|\.ts)$/,
loader: '@ngtools/webpack',
exclude : /export_nehuba|plugin_example/
exclude : /third_party|plugin_example/
},
{
test : /\.(html|css)$/,
......
......@@ -10,7 +10,7 @@ module.exports = {
exclude : /node_modules|[Ss]pec\.ts$/
},
{
test : /export_nehuba|.*?worker.*?\.js$/,
test : /third_party|.*?worker.*?\.js$/,
use : {
loader : 'file-loader',
options: {
......
......@@ -18,7 +18,7 @@ module.exports = {
test: /(?:\.ngfactory\.js|\.ngstyle\.js|\.ts)$/,
// test : /\.ts$/,
loader: '@ngtools/webpack',
exclude : /export_nehuba/
exclude : /third_party/
},
{
test : /\.(html|css)$/,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment