Doing this in the PHP code is not the right approach for multiple reasons: 1. A bug in the PHP code prevents them from being added to the response. 2. They are only added when something is served via PHP and not in other cases (that makes for example the newest IE UXSS which is not yet patched by Microsoft exploitable on ownCloud) 3. Some headers such as the Strict-Transport-Security might require custom modifications by administrators. This was not possible before and lead to buggy situations. This pull request moves those headers out of the PHP code and adds a security check to the admin settings performed via JS.remotes/origin/external-backend-ondemand
parent
1155ad6e38
commit
bbd5f28415
@ -0,0 +1,326 @@ |
||||
/** |
||||
* Copyright (c) 2015 Lukas Reschke <lukas@owncloud.com> |
||||
* |
||||
* This file is licensed under the Affero General Public License version 3 |
||||
* or later. |
||||
* |
||||
* See the COPYING-README file. |
||||
* |
||||
*/ |
||||
|
||||
describe('OC.SetupChecks tests', function() { |
||||
var suite = this; |
||||
|
||||
beforeEach( function(){ |
||||
suite.server = sinon.fakeServer.create(); |
||||
}); |
||||
|
||||
afterEach( function(){ |
||||
suite.server.restore(); |
||||
}); |
||||
|
||||
describe('checkWebDAV', function() { |
||||
it('should fail with another response status code than 201 or 207', function(done) { |
||||
var async = OC.SetupChecks.checkWebDAV(); |
||||
|
||||
suite.server.requests[0].respond(200); |
||||
|
||||
async.done(function( data, s, x ){ |
||||
expect(data).toEqual(['Your web server is not yet set up properly to allow file synchronization because the WebDAV interface seems to be broken.']); |
||||
}); |
||||
}); |
||||
|
||||
it('should return no error with a response status code of 207', function(done) { |
||||
var async = OC.SetupChecks.checkWebDAV(); |
||||
|
||||
suite.server.requests[0].respond(207); |
||||
|
||||
async.done(function( data, s, x ){ |
||||
expect(data).toEqual([]); |
||||
}); |
||||
}); |
||||
|
||||
it('should return no error with a response status code of 401', function(done) { |
||||
var async = OC.SetupChecks.checkWebDAV(); |
||||
|
||||
suite.server.requests[0].respond(401); |
||||
|
||||
async.done(function( data, s, x ){ |
||||
expect(data).toEqual([]); |
||||
}); |
||||
}); |
||||
}); |
||||
|
||||
describe('checkSetup', function() { |
||||
it('should return an error if server has no internet connection', function(done) { |
||||
var async = OC.SetupChecks.checkSetup(); |
||||
|
||||
suite.server.requests[0].respond( |
||||
200, |
||||
{ |
||||
'Content-Type': 'application/json' |
||||
}, |
||||
JSON.stringify({data: {serverHasInternetConnection: false}}) |
||||
); |
||||
|
||||
async.done(function( data, s, x ){ |
||||
expect(data).toEqual(['This server has no working Internet connection. This means that some of the features like mounting external storage, notifications about updates or installation of third-party apps will not work. Accessing files remotely and sending of notification emails might not work, either. We suggest to enable Internet connection for this server if you want to have all features.', 'Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root.']); |
||||
}); |
||||
}); |
||||
|
||||
it('should return an error if server has no internet connection and data directory is not protected', function(done) { |
||||
var async = OC.SetupChecks.checkSetup(); |
||||
|
||||
suite.server.requests[0].respond( |
||||
200, |
||||
{ |
||||
'Content-Type': 'application/json' |
||||
}, |
||||
JSON.stringify({data: {serverHasInternetConnection: false, dataDirectoryProtected: false}}) |
||||
); |
||||
|
||||
async.done(function( data, s, x ){ |
||||
expect(data).toEqual(['This server has no working Internet connection. This means that some of the features like mounting external storage, notifications about updates or installation of third-party apps will not work. Accessing files remotely and sending of notification emails might not work, either. We suggest to enable Internet connection for this server if you want to have all features.', 'Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root.']); |
||||
}); |
||||
}); |
||||
|
||||
it('should return an error if the response has no statuscode 200', function(done) { |
||||
var async = OC.SetupChecks.checkSetup(); |
||||
|
||||
suite.server.requests[0].respond( |
||||
500, |
||||
{ |
||||
'Content-Type': 'application/json' |
||||
}, |
||||
JSON.stringify({data: {serverHasInternetConnection: false, dataDirectoryProtected: false}}) |
||||
); |
||||
|
||||
async.done(function( data, s, x ){ |
||||
expect(data).toEqual(['Error occurred while checking server setup']); |
||||
}); |
||||
}); |
||||
}); |
||||
|
||||
describe('checkGeneric', function() { |
||||
it('should return an error if the response has no statuscode 200', function(done) { |
||||
var async = OC.SetupChecks.checkGeneric(); |
||||
|
||||
suite.server.requests[0].respond( |
||||
500, |
||||
{ |
||||
'Content-Type': 'application/json' |
||||
} |
||||
); |
||||
|
||||
async.done(function( data, s, x ){ |
||||
expect(data).toEqual(['Error occurred while checking server setup', 'Error occurred while checking server setup']); |
||||
}); |
||||
}); |
||||
|
||||
it('should return all errors if all headers are missing', function(done) { |
||||
var protocolStub = sinon.stub(OC, 'getProtocol').returns('https'); |
||||
var async = OC.SetupChecks.checkGeneric(); |
||||
|
||||
suite.server.requests[0].respond( |
||||
200, |
||||
{ |
||||
'Content-Type': 'application/json', |
||||
'Strict-Transport-Security': '2678400' |
||||
} |
||||
); |
||||
|
||||
async.done(function( data, s, x ){ |
||||
expect(data).toEqual(['The "X-XSS-Protection" HTTP header is not configured to equal to "1; mode=block". This is a potential security risk and we recommend adjusting this setting.', 'The "X-Content-Type-Options" HTTP header is not configured to equal to "nosniff". This is a potential security risk and we recommend adjusting this setting.', 'The "X-Robots-Tag" HTTP header is not configured to equal to "none". This is a potential security risk and we recommend adjusting this setting.', 'The "X-Frame-Options" HTTP header is not configured to equal to "SAMEORIGIN". This is a potential security risk and we recommend adjusting this setting.']); |
||||
}); |
||||
protocolStub.restore(); |
||||
}); |
||||
|
||||
it('should return only some errors if just some headers are missing', function(done) { |
||||
var protocolStub = sinon.stub(OC, 'getProtocol').returns('https'); |
||||
var async = OC.SetupChecks.checkGeneric(); |
||||
|
||||
suite.server.requests[0].respond( |
||||
200, |
||||
{ |
||||
'X-Robots-Tag': 'none', |
||||
'X-Frame-Options': 'SAMEORIGIN', |
||||
'Strict-Transport-Security': '2678400' |
||||
|
||||
} |
||||
); |
||||
|
||||
async.done(function( data, s, x ){ |
||||
expect(data).toEqual(['The "X-XSS-Protection" HTTP header is not configured to equal to "1; mode=block". This is a potential security risk and we recommend adjusting this setting.', 'The "X-Content-Type-Options" HTTP header is not configured to equal to "nosniff". This is a potential security risk and we recommend adjusting this setting.']); |
||||
}); |
||||
protocolStub.restore(); |
||||
}); |
||||
|
||||
it('should return none errors if all headers are there', function(done) { |
||||
var protocolStub = sinon.stub(OC, 'getProtocol').returns('https'); |
||||
var async = OC.SetupChecks.checkGeneric(); |
||||
|
||||
suite.server.requests[0].respond( |
||||
200, |
||||
{ |
||||
'X-XSS-Protection': '1; mode=block', |
||||
'X-Content-Type-Options': 'nosniff', |
||||
'X-Robots-Tag': 'none', |
||||
'X-Frame-Options': 'SAMEORIGIN', |
||||
'Strict-Transport-Security': '2678400' |
||||
} |
||||
); |
||||
|
||||
async.done(function( data, s, x ){ |
||||
expect(data).toEqual([]); |
||||
}); |
||||
protocolStub.restore(); |
||||
}); |
||||
}); |
||||
|
||||
it('should return a SSL warning if HTTPS is not used', function(done) { |
||||
var protocolStub = sinon.stub(OC, 'getProtocol').returns('http'); |
||||
var async = OC.SetupChecks.checkGeneric(); |
||||
|
||||
suite.server.requests[0].respond(200, |
||||
{ |
||||
'X-XSS-Protection': '1; mode=block', |
||||
'X-Content-Type-Options': 'nosniff', |
||||
'X-Robots-Tag': 'none', |
||||
'X-Frame-Options': 'SAMEORIGIN' |
||||
} |
||||
); |
||||
|
||||
async.done(function( data, s, x ){ |
||||
expect(data).toEqual(['You are accessing this site via HTTP. We strongly suggest you configure your server to require using HTTPS instead.']); |
||||
}); |
||||
protocolStub.restore(); |
||||
}); |
||||
|
||||
it('should return an error if the response has no statuscode 200', function(done) { |
||||
var async = OC.SetupChecks.checkGeneric(); |
||||
|
||||
suite.server.requests[0].respond( |
||||
500, |
||||
{ |
||||
'Content-Type': 'application/json' |
||||
}, |
||||
JSON.stringify({data: {serverHasInternetConnection: false, dataDirectoryProtected: false}}) |
||||
); |
||||
async.done(function( data, s, x ){ |
||||
expect(data).toEqual(['Error occurred while checking server setup', 'Error occurred while checking server setup']); |
||||
}); |
||||
}); |
||||
|
||||
it('should return a SSL warning if SSL used without Strict-Transport-Security-Header', function(done) { |
||||
var protocolStub = sinon.stub(OC, 'getProtocol').returns('https'); |
||||
var async = OC.SetupChecks.checkGeneric(); |
||||
|
||||
suite.server.requests[0].respond(200, |
||||
{ |
||||
'X-XSS-Protection': '1; mode=block', |
||||
'X-Content-Type-Options': 'nosniff', |
||||
'X-Robots-Tag': 'none', |
||||
'X-Frame-Options': 'SAMEORIGIN' |
||||
} |
||||
); |
||||
|
||||
async.done(function( data, s, x ){ |
||||
expect(data).toEqual(['The "Strict-Transport-Security" HTTP header is not configured to least "2,678,400" seconds. This is a potential security risk and we recommend adjusting this setting.']); |
||||
}); |
||||
protocolStub.restore(); |
||||
}); |
||||
|
||||
it('should return a SSL warning if SSL used with to small Strict-Transport-Security-Header', function(done) { |
||||
var protocolStub = sinon.stub(OC, 'getProtocol').returns('https'); |
||||
var async = OC.SetupChecks.checkGeneric(); |
||||
|
||||
suite.server.requests[0].respond(200, |
||||
{ |
||||
'Strict-Transport-Security': '2678399', |
||||
'X-XSS-Protection': '1; mode=block', |
||||
'X-Content-Type-Options': 'nosniff', |
||||
'X-Robots-Tag': 'none', |
||||
'X-Frame-Options': 'SAMEORIGIN' |
||||
} |
||||
); |
||||
|
||||
async.done(function( data, s, x ){ |
||||
expect(data).toEqual(['The "Strict-Transport-Security" HTTP header is not configured to least "2,678,400" seconds. This is a potential security risk and we recommend adjusting this setting.']); |
||||
}); |
||||
protocolStub.restore(); |
||||
}); |
||||
|
||||
it('should return a SSL warning if SSL used with to a bogus Strict-Transport-Security-Header', function(done) { |
||||
var protocolStub = sinon.stub(OC, 'getProtocol').returns('https'); |
||||
var async = OC.SetupChecks.checkGeneric(); |
||||
|
||||
suite.server.requests[0].respond(200, |
||||
{ |
||||
'Strict-Transport-Security': 'iAmABogusHeader342', |
||||
'X-XSS-Protection': '1; mode=block', |
||||
'X-Content-Type-Options': 'nosniff', |
||||
'X-Robots-Tag': 'none', |
||||
'X-Frame-Options': 'SAMEORIGIN' |
||||
} |
||||
); |
||||
|
||||
async.done(function( data, s, x ){ |
||||
expect(data).toEqual(['The "Strict-Transport-Security" HTTP header is not configured to least "2,678,400" seconds. This is a potential security risk and we recommend adjusting this setting.']); |
||||
}); |
||||
protocolStub.restore(); |
||||
}); |
||||
|
||||
it('should return no SSL warning if SSL used with to exact the minimum Strict-Transport-Security-Header', function(done) { |
||||
var protocolStub = sinon.stub(OC, 'getProtocol').returns('https'); |
||||
var async = OC.SetupChecks.checkGeneric(); |
||||
|
||||
suite.server.requests[0].respond(200, { |
||||
'Strict-Transport-Security': '2678400', |
||||
'X-XSS-Protection': '1; mode=block', |
||||
'X-Content-Type-Options': 'nosniff', |
||||
'X-Robots-Tag': 'none', |
||||
'X-Frame-Options': 'SAMEORIGIN' |
||||
}); |
||||
|
||||
async.done(function( data, s, x ){ |
||||
expect(data).toEqual([]); |
||||
}); |
||||
protocolStub.restore(); |
||||
}); |
||||
|
||||
it('should return no SSL warning if SSL used with to more than the minimum Strict-Transport-Security-Header', function(done) { |
||||
var protocolStub = sinon.stub(OC, 'getProtocol').returns('https'); |
||||
var async = OC.SetupChecks.checkGeneric(); |
||||
|
||||
suite.server.requests[0].respond(200, { |
||||
'Strict-Transport-Security': '12678400', |
||||
'X-XSS-Protection': '1; mode=block', |
||||
'X-Content-Type-Options': 'nosniff', |
||||
'X-Robots-Tag': 'none', |
||||
'X-Frame-Options': 'SAMEORIGIN' |
||||
}); |
||||
|
||||
async.done(function( data, s, x ){ |
||||
expect(data).toEqual([]); |
||||
}); |
||||
protocolStub.restore(); |
||||
}); |
||||
|
||||
it('should return no SSL warning if SSL used with to more than the minimum Strict-Transport-Security-Header and includeSubDomains parameter', function(done) { |
||||
var protocolStub = sinon.stub(OC, 'getProtocol').returns('https'); |
||||
var async = OC.SetupChecks.checkGeneric(); |
||||
|
||||
suite.server.requests[0].respond(200, { |
||||
'Strict-Transport-Security': '12678400; includeSubDomains', |
||||
'X-XSS-Protection': '1; mode=block', |
||||
'X-Content-Type-Options': 'nosniff', |
||||
'X-Robots-Tag': 'none', |
||||
'X-Frame-Options': 'SAMEORIGIN' |
||||
}); |
||||
|
||||
async.done(function( data, s, x ){ |
||||
expect(data).toEqual([]); |
||||
}); |
||||
protocolStub.restore(); |
||||
}); |
||||
}); |
Loading…
Reference in new issue