setupchecks.js 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590
  1. /*
  2. * Copyright (c) 2014
  3. *
  4. * This file is licensed under the Affero General Public License version 3
  5. * or later.
  6. *
  7. * See the COPYING-README file.
  8. *
  9. */
  10. (function() {
  11. OC.SetupChecks = {
  12. /* Message types */
  13. MESSAGE_TYPE_INFO:0,
  14. MESSAGE_TYPE_WARNING:1,
  15. MESSAGE_TYPE_ERROR:2,
  16. /**
  17. * Check whether the WebDAV connection works.
  18. *
  19. * @return $.Deferred object resolved with an array of error messages
  20. */
  21. checkWebDAV: function() {
  22. var deferred = $.Deferred();
  23. var afterCall = function(xhr) {
  24. var messages = [];
  25. if (xhr.status !== 207 && xhr.status !== 401) {
  26. messages.push({
  27. msg: t('core', 'Your web server is not yet properly set up to allow file synchronization, because the WebDAV interface seems to be broken.'),
  28. type: OC.SetupChecks.MESSAGE_TYPE_ERROR
  29. });
  30. }
  31. deferred.resolve(messages);
  32. };
  33. $.ajax({
  34. type: 'PROPFIND',
  35. url: OC.linkToRemoteBase('webdav'),
  36. data: '<?xml version="1.0"?>' +
  37. '<d:propfind xmlns:d="DAV:">' +
  38. '<d:prop><d:resourcetype/></d:prop>' +
  39. '</d:propfind>',
  40. complete: afterCall,
  41. allowAuthErrors: true
  42. });
  43. return deferred.promise();
  44. },
  45. /**
  46. * Check whether the .well-known URLs works.
  47. *
  48. * @param url the URL to test
  49. * @param placeholderUrl the placeholder URL - can be found at oc_defaults.docPlaceholderUrl
  50. * @param {boolean} runCheck if this is set to false the check is skipped and no error is returned
  51. * @param {int|int[]} expectedStatus the expected HTTP status to be returned by the URL, 207 by default
  52. * @return $.Deferred object resolved with an array of error messages
  53. */
  54. checkWellKnownUrl: function(url, placeholderUrl, runCheck, expectedStatus) {
  55. if (expectedStatus === undefined) {
  56. expectedStatus = [207];
  57. }
  58. if (!Array.isArray(expectedStatus)) {
  59. expectedStatus = [expectedStatus];
  60. }
  61. var deferred = $.Deferred();
  62. if(runCheck === false) {
  63. deferred.resolve([]);
  64. return deferred.promise();
  65. }
  66. var afterCall = function(xhr) {
  67. var messages = [];
  68. if (expectedStatus.indexOf(xhr.status) === -1) {
  69. var docUrl = placeholderUrl.replace('PLACEHOLDER', 'admin-setup-well-known-URL');
  70. messages.push({
  71. msg: t('core', 'Your web server is not properly set up to resolve "{url}". Further information can be found in the <a target="_blank" rel="noreferrer noopener" href="{docLink}">documentation</a>.', { docLink: docUrl, url: url }),
  72. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  73. });
  74. }
  75. deferred.resolve(messages);
  76. };
  77. $.ajax({
  78. type: 'PROPFIND',
  79. url: url,
  80. complete: afterCall,
  81. allowAuthErrors: true
  82. });
  83. return deferred.promise();
  84. },
  85. /**
  86. * Check whether the WOFF2 URLs works.
  87. *
  88. * @param url the URL to test
  89. * @param placeholderUrl the placeholder URL - can be found at oc_defaults.docPlaceholderUrl
  90. * @return $.Deferred object resolved with an array of error messages
  91. */
  92. checkWOFF2Loading: function(url, placeholderUrl) {
  93. var deferred = $.Deferred();
  94. var afterCall = function(xhr) {
  95. var messages = [];
  96. if (xhr.status !== 200) {
  97. var docUrl = placeholderUrl.replace('PLACEHOLDER', 'admin-nginx');
  98. messages.push({
  99. msg: t('core', 'Your web server is not properly set up to deliver .woff2 files. This is typically an issue with the Nginx configuration. For Nextcloud 15 it needs an adjustement to also deliver .woff2 files. Compare your Nginx configuration to the recommended configuration in our <a target="_blank" rel="noreferrer noopener" href="{docLink}">documentation</a>.', { docLink: docUrl, url: url }),
  100. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  101. });
  102. }
  103. deferred.resolve(messages);
  104. };
  105. $.ajax({
  106. type: 'GET',
  107. url: url,
  108. complete: afterCall,
  109. allowAuthErrors: true
  110. });
  111. return deferred.promise();
  112. },
  113. /**
  114. * Runs setup checks on the server side
  115. *
  116. * @return $.Deferred object resolved with an array of error messages
  117. */
  118. checkSetup: function() {
  119. var deferred = $.Deferred();
  120. var afterCall = function(data, statusText, xhr) {
  121. var messages = [];
  122. if (xhr.status === 200 && data) {
  123. if (!data.isGetenvServerWorking) {
  124. messages.push({
  125. msg: t('core', 'PHP does not seem to be setup properly to query system environment variables. The test with getenv("PATH") only returns an empty response.') + ' ' +
  126. t(
  127. 'core',
  128. 'Please check the <a target="_blank" rel="noreferrer noopener" href="{docLink}">installation documentation ↗</a> for PHP configuration notes and the PHP configuration of your server, especially when using php-fpm.',
  129. {
  130. docLink: oc_defaults.docPlaceholderUrl.replace('PLACEHOLDER', 'admin-php-fpm')
  131. }
  132. ),
  133. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  134. });
  135. }
  136. if (data.isReadOnlyConfig) {
  137. messages.push({
  138. msg: t('core', 'The read-only config has been enabled. This prevents setting some configurations via the web-interface. Furthermore, the file needs to be made writable manually for every update.'),
  139. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  140. });
  141. }
  142. if (!data.hasValidTransactionIsolationLevel) {
  143. messages.push({
  144. msg: t('core', 'Your database does not run with "READ COMMITTED" transaction isolation level. This can cause problems when multiple actions are executed in parallel.'),
  145. type: OC.SetupChecks.MESSAGE_TYPE_ERROR
  146. });
  147. }
  148. if(!data.hasFileinfoInstalled) {
  149. messages.push({
  150. msg: t('core', 'The PHP module "fileinfo" is missing. It is strongly recommended to enable this module to get the best results with MIME type detection.'),
  151. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  152. });
  153. }
  154. if(!data.hasWorkingFileLocking) {
  155. messages.push({
  156. msg: t('core', 'Transactional file locking is disabled, this might lead to issues with race conditions. Enable "filelocking.enabled" in config.php to avoid these problems. See the <a target="_blank" rel="noreferrer noopener" href="{docLink}">documentation ↗</a> for more information.', {docLink: oc_defaults.docPlaceholderUrl.replace('PLACEHOLDER', 'admin-transactional-locking')}),
  157. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  158. });
  159. }
  160. if (data.suggestedOverwriteCliURL !== '') {
  161. messages.push({
  162. msg: t('core', 'If your installation is not installed at the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the "overwrite.cli.url" option in your config.php file to the webroot path of your installation (suggestion: "{suggestedOverwriteCliURL}")', {suggestedOverwriteCliURL: data.suggestedOverwriteCliURL}),
  163. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  164. });
  165. }
  166. if (data.cronErrors.length > 0) {
  167. var listOfCronErrors = "";
  168. data.cronErrors.forEach(function(element){
  169. listOfCronErrors += "<li>";
  170. listOfCronErrors += element.error;
  171. listOfCronErrors += ' ';
  172. listOfCronErrors += element.hint;
  173. listOfCronErrors += "</li>";
  174. });
  175. messages.push({
  176. msg: t(
  177. 'core',
  178. 'It was not possible to execute the cron job via CLI. The following technical errors have appeared:'
  179. ) + "<ul>" + listOfCronErrors + "</ul>",
  180. type: OC.SetupChecks.MESSAGE_TYPE_ERROR
  181. })
  182. }
  183. if (data.cronInfo.diffInSeconds > 3600) {
  184. messages.push({
  185. msg: t('core', 'Last background job execution ran {relativeTime}. Something seems wrong.', {relativeTime: data.cronInfo.relativeTime}) +
  186. ' <a href="' + data.cronInfo.backgroundJobsUrl + '">' + t('core', 'Check the background job settings') + '</a>',
  187. type: OC.SetupChecks.MESSAGE_TYPE_ERROR
  188. });
  189. }
  190. if (!data.serverHasInternetConnection) {
  191. messages.push({
  192. msg: t('core', 'This server has no working Internet connection: Multiple endpoints could not be reached. 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. Establish a connection from this server to the Internet to enjoy all features.'),
  193. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  194. });
  195. }
  196. if(!data.isMemcacheConfigured) {
  197. messages.push({
  198. msg: t('core', 'No memory cache has been configured. To enhance performance, please configure a memcache, if available. Further information can be found in the <a target="_blank" rel="noreferrer noopener" href="{docLink}">documentation</a>.', {docLink: data.memcacheDocs}),
  199. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  200. });
  201. }
  202. if(!data.isRandomnessSecure) {
  203. messages.push({
  204. msg: t('core', 'No suitable source for randomness found by PHP which is highly discouraged for security reasons. Further information can be found in the <a target="_blank" rel="noreferrer noopener" href="{docLink}">documentation</a>.', {docLink: data.securityDocs}),
  205. type: OC.SetupChecks.MESSAGE_TYPE_ERROR
  206. });
  207. }
  208. if(data.isUsedTlsLibOutdated) {
  209. messages.push({
  210. msg: data.isUsedTlsLibOutdated,
  211. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  212. });
  213. }
  214. if(data.phpSupported && data.phpSupported.eol) {
  215. messages.push({
  216. msg: t('core', 'You are currently running PHP {version}. Upgrade your PHP version to take advantage of <a target="_blank" rel="noreferrer noopener" href="{phpLink}">performance and security updates provided by the PHP Group</a> as soon as your distribution supports it.', {version: data.phpSupported.version, phpLink: 'https://secure.php.net/supported-versions.php'}),
  217. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  218. });
  219. }
  220. if(data.phpSupported && data.phpSupported.version.substr(0, 3) === '5.6') {
  221. messages.push({
  222. msg: t('core', 'You are currently running PHP 5.6. The current major version of Nextcloud is the last that is supported on PHP 5.6. It is recommended to upgrade the PHP version to 7.0+ to be able to upgrade to Nextcloud 14.'),
  223. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  224. });
  225. }
  226. if(!data.forwardedForHeadersWorking) {
  227. messages.push({
  228. msg: t('core', 'The reverse proxy header configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If not, this is a security issue and can allow an attacker to spoof their IP address as visible to the Nextcloud. Further information can be found in the <a target="_blank" rel="noreferrer noopener" href="{docLink}">documentation</a>.', {docLink: data.reverseProxyDocs}),
  229. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  230. });
  231. }
  232. if(!data.isCorrectMemcachedPHPModuleInstalled) {
  233. messages.push({
  234. msg: t('core', 'Memcached is configured as distributed cache, but the wrong PHP module "memcache" is installed. \\OC\\Memcache\\Memcached only supports "memcached" and not "memcache". See the <a target="_blank" rel="noreferrer noopener" href="{wikiLink}">memcached wiki about both modules</a>.', {wikiLink: 'https://code.google.com/p/memcached/wiki/PHPClientComparison'}),
  235. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  236. });
  237. }
  238. if(!data.hasPassedCodeIntegrityCheck) {
  239. messages.push({
  240. msg: t(
  241. 'core',
  242. 'Some files have not passed the integrity check. Further information on how to resolve this issue can be found in the <a target="_blank" rel="noreferrer noopener" href="{docLink}">documentation</a>. (<a href="{codeIntegrityDownloadEndpoint}">List of invalid files…</a> / <a href="{rescanEndpoint}">Rescan…</a>)',
  243. {
  244. docLink: data.codeIntegrityCheckerDocumentation,
  245. codeIntegrityDownloadEndpoint: OC.generateUrl('/settings/integrity/failed'),
  246. rescanEndpoint: OC.generateUrl('/settings/integrity/rescan?requesttoken={requesttoken}', {'requesttoken': OC.requestToken})
  247. }
  248. ),
  249. type: OC.SetupChecks.MESSAGE_TYPE_ERROR
  250. });
  251. }
  252. if(!data.hasOpcacheLoaded) {
  253. messages.push({
  254. msg: t(
  255. 'core',
  256. 'The PHP OPcache module is not loaded. <a target="_blank" rel="noreferrer noopener" href="{docLink}">For better performance it is recommended</a> to load it into your PHP installation.',
  257. {
  258. docLink: data.phpOpcacheDocumentation,
  259. }
  260. ),
  261. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  262. });
  263. } else if(!data.isOpcacheProperlySetup) {
  264. messages.push({
  265. msg: t(
  266. 'core',
  267. 'The PHP OPcache is not properly configured. <a target="_blank" rel="noreferrer noopener" href="{docLink}">For better performance it is recommended</a> to use the following settings in the <code>php.ini</code>:',
  268. {
  269. docLink: data.phpOpcacheDocumentation,
  270. }
  271. ) + "<pre><code>opcache.enable=1\nopcache.enable_cli=1\nopcache.interned_strings_buffer=8\nopcache.max_accelerated_files=10000\nopcache.memory_consumption=128\nopcache.save_comments=1\nopcache.revalidate_freq=1</code></pre>",
  272. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  273. });
  274. }
  275. if(!data.isSettimelimitAvailable) {
  276. messages.push({
  277. msg: t(
  278. 'core',
  279. 'The PHP function "set_time_limit" is not available. This could result in scripts being halted mid-execution, breaking your installation. Enabling this function is strongly recommended.'),
  280. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  281. });
  282. }
  283. if (!data.hasFreeTypeSupport) {
  284. messages.push({
  285. msg: t(
  286. 'core',
  287. 'Your PHP does not have FreeType support, resulting in breakage of profile pictures and the settings interface.'
  288. ),
  289. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  290. })
  291. }
  292. if (data.missingIndexes.length > 0) {
  293. var listOfMissingIndexes = "";
  294. data.missingIndexes.forEach(function(element){
  295. listOfMissingIndexes += "<li>";
  296. listOfMissingIndexes += t('core', 'Missing index "{indexName}" in table "{tableName}".', element);
  297. listOfMissingIndexes += "</li>";
  298. });
  299. messages.push({
  300. msg: t(
  301. 'core',
  302. 'The database is missing some indexes. Due to the fact that adding indexes on big tables could take some time they were not added automatically. By running "occ db:add-missing-indices" those missing indexes could be added manually while the instance keeps running. Once the indexes are added queries to those tables are usually much faster.'
  303. ) + "<ul>" + listOfMissingIndexes + "</ul>",
  304. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  305. })
  306. }
  307. if (data.recommendedPHPModules.length > 0) {
  308. var listOfRecommendedPHPModules = "";
  309. data.recommendedPHPModules.forEach(function(element){
  310. listOfRecommendedPHPModules += "<li>" + element + "</li>";
  311. });
  312. messages.push({
  313. msg: t(
  314. 'core',
  315. 'This instance is missing some recommended PHP modules. For improved performance and better compatibility it is highly recommended to install them.'
  316. ) + "<ul><code>" + listOfRecommendedPHPModules + "</code></ul>",
  317. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  318. })
  319. }
  320. if (data.pendingBigIntConversionColumns.length > 0) {
  321. var listOfPendingBigIntConversionColumns = "";
  322. data.pendingBigIntConversionColumns.forEach(function(element){
  323. listOfPendingBigIntConversionColumns += "<li>" + element + "</li>";
  324. });
  325. messages.push({
  326. msg: t(
  327. 'core',
  328. 'Some columns in the database are missing a conversion to big int. Due to the fact that changing column types on big tables could take some time they were not changed automatically. By running \'occ db:convert-filecache-bigint\' those pending changes could be applied manually. This operation needs to be made while the instance is offline. For further details read <a target="_blank" rel="noreferrer noopener" href="{docLink}">the documentation page about this</a>.',
  329. {
  330. docLink: oc_defaults.docPlaceholderUrl.replace('PLACEHOLDER', 'admin-bigint-conversion'),
  331. }
  332. ) + "<ul>" + listOfPendingBigIntConversionColumns + "</ul>",
  333. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  334. })
  335. }
  336. if (data.isSqliteUsed) {
  337. messages.push({
  338. msg: t(
  339. 'core',
  340. 'SQLite is currently being used as the backend database. For larger installations we recommend that you switch to a different database backend.'
  341. ) + ' ' + t('core', 'This is particularly recommended when using the desktop client for file synchronisation.') + ' ' +
  342. t(
  343. 'core',
  344. 'To migrate to another database use the command line tool: \'occ db:convert-type\', or see the <a target="_blank" rel="noreferrer noopener" href="{docLink}">documentation ↗</a>.',
  345. {
  346. docLink: data.databaseConversionDocumentation,
  347. }
  348. ),
  349. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  350. })
  351. }
  352. if (data.isPHPMailerUsed) {
  353. messages.push({
  354. msg: t(
  355. 'core',
  356. 'Use of the the built in php mailer is no longer supported. <a target="_blank" rel="noreferrer noopener" href="{docLink}">Please update your email server settings ↗<a/>.',
  357. {
  358. docLink: data.mailSettingsDocumentation,
  359. }
  360. ),
  361. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  362. });
  363. }
  364. if (!data.isMemoryLimitSufficient) {
  365. messages.push({
  366. msg: t(
  367. 'core',
  368. 'The PHP memory limit is below the recommended value of 512MB.'
  369. ),
  370. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  371. })
  372. }
  373. if(data.appDirsWithDifferentOwner && data.appDirsWithDifferentOwner.length > 0) {
  374. var appDirsWithDifferentOwner = data.appDirsWithDifferentOwner.reduce(
  375. function(appDirsWithDifferentOwner, directory) {
  376. return appDirsWithDifferentOwner + '<li>' + directory + '</li>';
  377. },
  378. ''
  379. );
  380. messages.push({
  381. msg: t('core', 'Some app directories are owned by a different user than the web server one. ' +
  382. 'This may be the case if apps have been installed manually. ' +
  383. 'Check the permissions of the following app directories:')
  384. + '<ul>' + appDirsWithDifferentOwner + '</ul>',
  385. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  386. });
  387. }
  388. } else {
  389. messages.push({
  390. msg: t('core', 'Error occurred while checking server setup'),
  391. type: OC.SetupChecks.MESSAGE_TYPE_ERROR
  392. });
  393. }
  394. deferred.resolve(messages);
  395. };
  396. $.ajax({
  397. type: 'GET',
  398. url: OC.generateUrl('settings/ajax/checksetup'),
  399. allowAuthErrors: true
  400. }).then(afterCall, afterCall);
  401. return deferred.promise();
  402. },
  403. /**
  404. * Runs generic checks on the server side, the difference to dedicated
  405. * methods is that we use the same XHR object for all checks to save
  406. * requests.
  407. *
  408. * @return $.Deferred object resolved with an array of error messages
  409. */
  410. checkGeneric: function() {
  411. var self = this;
  412. var deferred = $.Deferred();
  413. var afterCall = function(data, statusText, xhr) {
  414. var messages = [];
  415. messages = messages.concat(self._checkSecurityHeaders(xhr));
  416. messages = messages.concat(self._checkSSL(xhr));
  417. deferred.resolve(messages);
  418. };
  419. $.ajax({
  420. type: 'GET',
  421. url: OC.generateUrl('heartbeat'),
  422. allowAuthErrors: true
  423. }).then(afterCall, afterCall);
  424. return deferred.promise();
  425. },
  426. checkDataProtected: function() {
  427. var deferred = $.Deferred();
  428. if(oc_dataURL === false){
  429. return deferred.resolve([]);
  430. }
  431. var afterCall = function(xhr) {
  432. var messages = [];
  433. // .ocdata is an empty file in the data directory - if this is readable then the data dir is not protected
  434. if (xhr.status === 200 && xhr.responseText === '') {
  435. messages.push({
  436. msg: t('core', 'Your data directory and files are probably accessible from the Internet. The .htaccess file is not working. It is strongly recommended that you configure your web server so that the data directory is no longer accessible, or move the data directory outside the web server document root.'),
  437. type: OC.SetupChecks.MESSAGE_TYPE_ERROR
  438. });
  439. }
  440. deferred.resolve(messages);
  441. };
  442. $.ajax({
  443. type: 'GET',
  444. url: OC.linkTo('', oc_dataURL+'/.ocdata?t=' + (new Date()).getTime()),
  445. complete: afterCall,
  446. allowAuthErrors: true
  447. });
  448. return deferred.promise();
  449. },
  450. /**
  451. * Runs check for some generic security headers on the server side
  452. *
  453. * @param {Object} xhr
  454. * @return {Array} Array with error messages
  455. */
  456. _checkSecurityHeaders: function(xhr) {
  457. var messages = [];
  458. if (xhr.status === 200) {
  459. var securityHeaders = {
  460. 'X-Content-Type-Options': ['nosniff'],
  461. 'X-Robots-Tag': ['none'],
  462. 'X-Frame-Options': ['SAMEORIGIN', 'DENY'],
  463. 'X-Download-Options': ['noopen'],
  464. 'X-Permitted-Cross-Domain-Policies': ['none'],
  465. };
  466. for (var header in securityHeaders) {
  467. var option = securityHeaders[header][0];
  468. if(!xhr.getResponseHeader(header) || xhr.getResponseHeader(header).toLowerCase() !== option.toLowerCase()) {
  469. var msg = t('core', 'The "{header}" HTTP header is not set to "{expected}". This is a potential security or privacy risk, as it is recommended to adjust this setting accordingly.', {header: header, expected: option});
  470. if(xhr.getResponseHeader(header) && securityHeaders[header].length > 1 && xhr.getResponseHeader(header).toLowerCase() === securityHeaders[header][1].toLowerCase()) {
  471. msg = t('core', 'The "{header}" HTTP header is not set to "{expected}". Some features might not work correctly, as it is recommended to adjust this setting accordingly.', {header: header, expected: option});
  472. }
  473. messages.push({
  474. msg: msg,
  475. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  476. });
  477. }
  478. }
  479. var xssfields = xhr.getResponseHeader('X-XSS-Protection') ? xhr.getResponseHeader('X-XSS-Protection').split(';').map(function(item) { return item.trim(); }) : [];
  480. if (xssfields.length === 0 || xssfields.indexOf('1') === -1 || xssfields.indexOf('mode=block') === -1) {
  481. messages.push({
  482. msg: t('core', 'The "{header}" HTTP header doesn\'t contain "{expected}". This is a potential security or privacy risk, as it is recommended to adjust this setting accordingly.',
  483. {
  484. header: 'X-XSS-Protection',
  485. expected: '1; mode=block'
  486. }),
  487. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  488. });
  489. }
  490. if (!xhr.getResponseHeader('Referrer-Policy') ||
  491. (xhr.getResponseHeader('Referrer-Policy').toLowerCase() !== 'no-referrer' &&
  492. xhr.getResponseHeader('Referrer-Policy').toLowerCase() !== 'no-referrer-when-downgrade' &&
  493. xhr.getResponseHeader('Referrer-Policy').toLowerCase() !== 'strict-origin' &&
  494. xhr.getResponseHeader('Referrer-Policy').toLowerCase() !== 'strict-origin-when-cross-origin' &&
  495. xhr.getResponseHeader('Referrer-Policy').toLowerCase() !== 'same-origin')) {
  496. messages.push({
  497. msg: t('core', 'The "{header}" HTTP header is not set to "{val1}", "{val2}", "{val3}", "{val4}" or "{val5}". This can leak referer information. See the <a target="_blank" rel="noreferrer noopener" href="{link}">W3C Recommendation ↗</a>.',
  498. {
  499. header: 'Referrer-Policy',
  500. val1: 'no-referrer',
  501. val2: 'no-referrer-when-downgrade',
  502. val3: 'strict-origin',
  503. val4: 'strict-origin-when-cross-origin',
  504. val5: 'same-origin',
  505. link: 'https://www.w3.org/TR/referrer-policy/'
  506. }),
  507. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  508. });
  509. }
  510. } else {
  511. messages.push({
  512. msg: t('core', 'Error occurred while checking server setup'),
  513. type: OC.SetupChecks.MESSAGE_TYPE_ERROR
  514. });
  515. }
  516. return messages;
  517. },
  518. /**
  519. * Runs check for some SSL configuration issues on the server side
  520. *
  521. * @param {Object} xhr
  522. * @return {Array} Array with error messages
  523. */
  524. _checkSSL: function(xhr) {
  525. var messages = [];
  526. if (xhr.status === 200) {
  527. var tipsUrl = oc_defaults.docPlaceholderUrl.replace('PLACEHOLDER', 'admin-security');
  528. if(OC.getProtocol() === 'https') {
  529. // Extract the value of 'Strict-Transport-Security'
  530. var transportSecurityValidity = xhr.getResponseHeader('Strict-Transport-Security');
  531. if(transportSecurityValidity !== null && transportSecurityValidity.length > 8) {
  532. var firstComma = transportSecurityValidity.indexOf(";");
  533. if(firstComma !== -1) {
  534. transportSecurityValidity = transportSecurityValidity.substring(8, firstComma);
  535. } else {
  536. transportSecurityValidity = transportSecurityValidity.substring(8);
  537. }
  538. }
  539. var minimumSeconds = 15552000;
  540. if(isNaN(transportSecurityValidity) || transportSecurityValidity <= (minimumSeconds - 1)) {
  541. messages.push({
  542. msg: t('core', 'The "Strict-Transport-Security" HTTP header is not set to at least "{seconds}" seconds. For enhanced security, it is recommended to enable HSTS as described in the <a href="{docUrl}" rel="noreferrer noopener">security tips ↗</a>.', {'seconds': minimumSeconds, docUrl: tipsUrl}),
  543. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  544. });
  545. }
  546. } else {
  547. messages.push({
  548. msg: t('core', 'Accessing site insecurely via HTTP. You are strongly adviced to set up your server to require HTTPS instead, as described in the <a href="{docUrl}">security tips ↗</a>.', {docUrl: tipsUrl}),
  549. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  550. });
  551. }
  552. } else {
  553. messages.push({
  554. msg: t('core', 'Error occurred while checking server setup'),
  555. type: OC.SetupChecks.MESSAGE_TYPE_ERROR
  556. });
  557. }
  558. return messages;
  559. }
  560. };
  561. })();