setupchecks.js 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598
  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} 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. var deferred = $.Deferred();
  59. if(runCheck === false) {
  60. deferred.resolve([]);
  61. return deferred.promise();
  62. }
  63. var afterCall = function(xhr) {
  64. var messages = [];
  65. if (xhr.status !== expectedStatus) {
  66. var docUrl = placeholderUrl.replace('PLACEHOLDER', 'admin-setup-well-known-URL');
  67. messages.push({
  68. 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 }),
  69. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  70. });
  71. }
  72. deferred.resolve(messages);
  73. };
  74. $.ajax({
  75. type: 'PROPFIND',
  76. url: url,
  77. complete: afterCall,
  78. allowAuthErrors: true
  79. });
  80. return deferred.promise();
  81. },
  82. /**
  83. * Check whether the WOFF2 URLs works.
  84. *
  85. * @param url the URL to test
  86. * @param placeholderUrl the placeholder URL - can be found at oc_defaults.docPlaceholderUrl
  87. * @return $.Deferred object resolved with an array of error messages
  88. */
  89. checkWOFF2Loading: function(url, placeholderUrl) {
  90. var deferred = $.Deferred();
  91. var afterCall = function(xhr) {
  92. var messages = [];
  93. if (xhr.status !== 200) {
  94. var docUrl = placeholderUrl.replace('PLACEHOLDER', 'admin-nginx');
  95. messages.push({
  96. 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 }),
  97. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  98. });
  99. }
  100. deferred.resolve(messages);
  101. };
  102. $.ajax({
  103. type: 'GET',
  104. url: url,
  105. complete: afterCall,
  106. allowAuthErrors: true
  107. });
  108. return deferred.promise();
  109. },
  110. /**
  111. * Runs setup checks on the server side
  112. *
  113. * @return $.Deferred object resolved with an array of error messages
  114. */
  115. checkSetup: function() {
  116. var deferred = $.Deferred();
  117. var afterCall = function(data, statusText, xhr) {
  118. var messages = [];
  119. if (xhr.status === 200 && data) {
  120. if (!data.isGetenvServerWorking) {
  121. messages.push({
  122. 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.') + ' ' +
  123. t(
  124. 'core',
  125. '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.',
  126. {
  127. docLink: oc_defaults.docPlaceholderUrl.replace('PLACEHOLDER', 'admin-php-fpm')
  128. }
  129. ),
  130. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  131. });
  132. }
  133. if (data.isReadOnlyConfig) {
  134. messages.push({
  135. 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.'),
  136. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  137. });
  138. }
  139. if (!data.hasValidTransactionIsolationLevel) {
  140. messages.push({
  141. 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.'),
  142. type: OC.SetupChecks.MESSAGE_TYPE_ERROR
  143. });
  144. }
  145. if(!data.hasFileinfoInstalled) {
  146. messages.push({
  147. 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.'),
  148. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  149. });
  150. }
  151. if (data.outdatedCaches.length > 0) {
  152. data.outdatedCaches.forEach(function(element){
  153. messages.push({
  154. msg: t(
  155. 'core',
  156. '{name} below version {version} is installed, for stability and performance reasons it is recommended to update to a newer {name} version.',
  157. element
  158. ),
  159. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  160. })
  161. });
  162. }
  163. if(!data.hasWorkingFileLocking) {
  164. messages.push({
  165. 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')}),
  166. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  167. });
  168. }
  169. if (data.suggestedOverwriteCliURL !== '') {
  170. messages.push({
  171. 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}),
  172. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  173. });
  174. }
  175. if (data.cronErrors.length > 0) {
  176. var listOfCronErrors = "";
  177. data.cronErrors.forEach(function(element){
  178. listOfCronErrors += "<li>";
  179. listOfCronErrors += element.error;
  180. listOfCronErrors += ' ';
  181. listOfCronErrors += element.hint;
  182. listOfCronErrors += "</li>";
  183. });
  184. messages.push({
  185. msg: t(
  186. 'core',
  187. 'It was not possible to execute the cron job via CLI. The following technical errors have appeared:'
  188. ) + "<ul>" + listOfCronErrors + "</ul>",
  189. type: OC.SetupChecks.MESSAGE_TYPE_ERROR
  190. })
  191. }
  192. if (data.cronInfo.diffInSeconds > 3600) {
  193. messages.push({
  194. msg: t('core', 'Last background job execution ran {relativeTime}. Something seems wrong.', {relativeTime: data.cronInfo.relativeTime}) +
  195. ' <a href="' + data.cronInfo.backgroundJobsUrl + '">' + t('core', 'Check the background job settings') + '</a>',
  196. type: OC.SetupChecks.MESSAGE_TYPE_ERROR
  197. });
  198. }
  199. if (!data.serverHasInternetConnection) {
  200. messages.push({
  201. 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.'),
  202. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  203. });
  204. }
  205. if(!data.isMemcacheConfigured) {
  206. messages.push({
  207. 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}),
  208. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  209. });
  210. }
  211. if(!data.isRandomnessSecure) {
  212. messages.push({
  213. 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}),
  214. type: OC.SetupChecks.MESSAGE_TYPE_ERROR
  215. });
  216. }
  217. if(data.isUsedTlsLibOutdated) {
  218. messages.push({
  219. msg: data.isUsedTlsLibOutdated,
  220. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  221. });
  222. }
  223. if(data.phpSupported && data.phpSupported.eol) {
  224. messages.push({
  225. 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'}),
  226. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  227. });
  228. }
  229. if(data.phpSupported && data.phpSupported.version.substr(0, 3) === '5.6') {
  230. messages.push({
  231. 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.'),
  232. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  233. });
  234. }
  235. if(!data.forwardedForHeadersWorking) {
  236. messages.push({
  237. 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}),
  238. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  239. });
  240. }
  241. if(!data.isCorrectMemcachedPHPModuleInstalled) {
  242. messages.push({
  243. 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'}),
  244. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  245. });
  246. }
  247. if(!data.hasPassedCodeIntegrityCheck) {
  248. messages.push({
  249. msg: t(
  250. 'core',
  251. '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>)',
  252. {
  253. docLink: data.codeIntegrityCheckerDocumentation,
  254. codeIntegrityDownloadEndpoint: OC.generateUrl('/settings/integrity/failed'),
  255. rescanEndpoint: OC.generateUrl('/settings/integrity/rescan?requesttoken={requesttoken}', {'requesttoken': OC.requestToken})
  256. }
  257. ),
  258. type: OC.SetupChecks.MESSAGE_TYPE_ERROR
  259. });
  260. }
  261. if(!data.hasOpcacheLoaded) {
  262. messages.push({
  263. msg: t(
  264. 'core',
  265. '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.',
  266. {
  267. docLink: data.phpOpcacheDocumentation,
  268. }
  269. ),
  270. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  271. });
  272. } else if(!data.isOpcacheProperlySetup) {
  273. messages.push({
  274. msg: t(
  275. 'core',
  276. '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>:',
  277. {
  278. docLink: data.phpOpcacheDocumentation,
  279. }
  280. ) + "<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>",
  281. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  282. });
  283. }
  284. if(!data.isSettimelimitAvailable) {
  285. messages.push({
  286. msg: t(
  287. 'core',
  288. '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.'),
  289. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  290. });
  291. }
  292. if (!data.hasFreeTypeSupport) {
  293. messages.push({
  294. msg: t(
  295. 'core',
  296. 'Your PHP does not have FreeType support, resulting in breakage of profile pictures and the settings interface.'
  297. ),
  298. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  299. })
  300. }
  301. if (data.missingIndexes.length > 0) {
  302. var listOfMissingIndexes = "";
  303. data.missingIndexes.forEach(function(element){
  304. listOfMissingIndexes += "<li>";
  305. listOfMissingIndexes += t('core', 'Missing index "{indexName}" in table "{tableName}".', element);
  306. listOfMissingIndexes += "</li>";
  307. });
  308. messages.push({
  309. msg: t(
  310. 'core',
  311. '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.'
  312. ) + "<ul>" + listOfMissingIndexes + "</ul>",
  313. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  314. })
  315. }
  316. if (data.recommendedPHPModules.length > 0) {
  317. var listOfRecommendedPHPModules = "";
  318. data.recommendedPHPModules.forEach(function(element){
  319. listOfRecommendedPHPModules += "<li>" + element + "</li>";
  320. });
  321. messages.push({
  322. msg: t(
  323. 'core',
  324. 'This instance is missing some recommended PHP modules. For improved performance and better compatibility it is highly recommended to install them.'
  325. ) + "<ul><code>" + listOfRecommendedPHPModules + "</code></ul>",
  326. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  327. })
  328. }
  329. if (data.pendingBigIntConversionColumns.length > 0) {
  330. var listOfPendingBigIntConversionColumns = "";
  331. data.pendingBigIntConversionColumns.forEach(function(element){
  332. listOfPendingBigIntConversionColumns += "<li>" + element + "</li>";
  333. });
  334. messages.push({
  335. msg: t(
  336. 'core',
  337. '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>.',
  338. {
  339. docLink: oc_defaults.docPlaceholderUrl.replace('PLACEHOLDER', 'admin-bigint-conversion'),
  340. }
  341. ) + "<ul>" + listOfPendingBigIntConversionColumns + "</ul>",
  342. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  343. })
  344. }
  345. if (data.isSqliteUsed) {
  346. messages.push({
  347. msg: t(
  348. 'core',
  349. 'SQLite is currently being used as the backend database. For larger installations we recommend that you switch to a different database backend.'
  350. ) + ' ' + t('core', 'This is particularly recommended when using the desktop client for file synchronisation.') + ' ' +
  351. t(
  352. 'core',
  353. '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>.',
  354. {
  355. docLink: data.databaseConversionDocumentation,
  356. }
  357. ),
  358. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  359. })
  360. }
  361. if (data.isPHPMailerUsed) {
  362. messages.push({
  363. msg: t(
  364. 'core',
  365. '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/>.',
  366. {
  367. docLink: data.mailSettingsDocumentation,
  368. }
  369. ),
  370. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  371. });
  372. }
  373. if (!data.isMemoryLimitSufficient) {
  374. messages.push({
  375. msg: t(
  376. 'core',
  377. 'The PHP memory limit is below the recommended value of 512MB.'
  378. ),
  379. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  380. })
  381. }
  382. if(data.appDirsWithDifferentOwner && data.appDirsWithDifferentOwner.length > 0) {
  383. var appDirsWithDifferentOwner = data.appDirsWithDifferentOwner.reduce(
  384. function(appDirsWithDifferentOwner, directory) {
  385. return appDirsWithDifferentOwner + '<li>' + directory + '</li>';
  386. },
  387. ''
  388. );
  389. messages.push({
  390. msg: t('core', 'Some app directories are owned by a different user than the web server one. ' +
  391. 'This may be the case if apps have been installed manually. ' +
  392. 'Check the permissions of the following app directories:')
  393. + '<ul>' + appDirsWithDifferentOwner + '</ul>',
  394. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  395. });
  396. }
  397. } else {
  398. messages.push({
  399. msg: t('core', 'Error occurred while checking server setup'),
  400. type: OC.SetupChecks.MESSAGE_TYPE_ERROR
  401. });
  402. }
  403. deferred.resolve(messages);
  404. };
  405. $.ajax({
  406. type: 'GET',
  407. url: OC.generateUrl('settings/ajax/checksetup'),
  408. allowAuthErrors: true
  409. }).then(afterCall, afterCall);
  410. return deferred.promise();
  411. },
  412. /**
  413. * Runs generic checks on the server side, the difference to dedicated
  414. * methods is that we use the same XHR object for all checks to save
  415. * requests.
  416. *
  417. * @return $.Deferred object resolved with an array of error messages
  418. */
  419. checkGeneric: function() {
  420. var self = this;
  421. var deferred = $.Deferred();
  422. var afterCall = function(data, statusText, xhr) {
  423. var messages = [];
  424. messages = messages.concat(self._checkSecurityHeaders(xhr));
  425. messages = messages.concat(self._checkSSL(xhr));
  426. deferred.resolve(messages);
  427. };
  428. $.ajax({
  429. type: 'GET',
  430. url: OC.generateUrl('heartbeat'),
  431. allowAuthErrors: true
  432. }).then(afterCall, afterCall);
  433. return deferred.promise();
  434. },
  435. checkDataProtected: function() {
  436. var deferred = $.Deferred();
  437. if(oc_dataURL === false){
  438. return deferred.resolve([]);
  439. }
  440. var afterCall = function(xhr) {
  441. var messages = [];
  442. // .ocdata is an empty file in the data directory - if this is readable then the data dir is not protected
  443. if (xhr.status === 200 && xhr.responseText === '') {
  444. messages.push({
  445. 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.'),
  446. type: OC.SetupChecks.MESSAGE_TYPE_ERROR
  447. });
  448. }
  449. deferred.resolve(messages);
  450. };
  451. $.ajax({
  452. type: 'GET',
  453. url: OC.linkTo('', oc_dataURL+'/.ocdata?t=' + (new Date()).getTime()),
  454. complete: afterCall,
  455. allowAuthErrors: true
  456. });
  457. return deferred.promise();
  458. },
  459. /**
  460. * Runs check for some generic security headers on the server side
  461. *
  462. * @param {Object} xhr
  463. * @return {Array} Array with error messages
  464. */
  465. _checkSecurityHeaders: function(xhr) {
  466. var messages = [];
  467. if (xhr.status === 200) {
  468. var securityHeaders = {
  469. 'X-Content-Type-Options': ['nosniff'],
  470. 'X-Robots-Tag': ['none'],
  471. 'X-Frame-Options': ['SAMEORIGIN', 'DENY'],
  472. 'X-Download-Options': ['noopen'],
  473. 'X-Permitted-Cross-Domain-Policies': ['none'],
  474. };
  475. for (var header in securityHeaders) {
  476. var option = securityHeaders[header][0];
  477. if(!xhr.getResponseHeader(header) || xhr.getResponseHeader(header).toLowerCase() !== option.toLowerCase()) {
  478. 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});
  479. if(xhr.getResponseHeader(header) && securityHeaders[header].length > 1 && xhr.getResponseHeader(header).toLowerCase() === securityHeaders[header][1].toLowerCase()) {
  480. 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});
  481. }
  482. messages.push({
  483. msg: msg,
  484. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  485. });
  486. }
  487. }
  488. var xssfields = xhr.getResponseHeader('X-XSS-Protection') ? xhr.getResponseHeader('X-XSS-Protection').split(';').map(function(item) { return item.trim(); }) : [];
  489. if (xssfields.length === 0 || xssfields.indexOf('1') === -1 || xssfields.indexOf('mode=block') === -1) {
  490. messages.push({
  491. 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.',
  492. {
  493. header: 'X-XSS-Protection',
  494. expected: '1; mode=block'
  495. }),
  496. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  497. });
  498. }
  499. if (!xhr.getResponseHeader('Referrer-Policy') ||
  500. (xhr.getResponseHeader('Referrer-Policy').toLowerCase() !== 'no-referrer' &&
  501. xhr.getResponseHeader('Referrer-Policy').toLowerCase() !== 'no-referrer-when-downgrade' &&
  502. xhr.getResponseHeader('Referrer-Policy').toLowerCase() !== 'strict-origin' &&
  503. xhr.getResponseHeader('Referrer-Policy').toLowerCase() !== 'strict-origin-when-cross-origin' &&
  504. xhr.getResponseHeader('Referrer-Policy').toLowerCase() !== 'same-origin')) {
  505. messages.push({
  506. 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>.',
  507. {
  508. header: 'Referrer-Policy',
  509. val1: 'no-referrer',
  510. val2: 'no-referrer-when-downgrade',
  511. val3: 'strict-origin',
  512. val4: 'strict-origin-when-cross-origin',
  513. val5: 'same-origin',
  514. link: 'https://www.w3.org/TR/referrer-policy/'
  515. }),
  516. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  517. });
  518. }
  519. } else {
  520. messages.push({
  521. msg: t('core', 'Error occurred while checking server setup'),
  522. type: OC.SetupChecks.MESSAGE_TYPE_ERROR
  523. });
  524. }
  525. return messages;
  526. },
  527. /**
  528. * Runs check for some SSL configuration issues on the server side
  529. *
  530. * @param {Object} xhr
  531. * @return {Array} Array with error messages
  532. */
  533. _checkSSL: function(xhr) {
  534. var messages = [];
  535. if (xhr.status === 200) {
  536. var tipsUrl = oc_defaults.docPlaceholderUrl.replace('PLACEHOLDER', 'admin-security');
  537. if(OC.getProtocol() === 'https') {
  538. // Extract the value of 'Strict-Transport-Security'
  539. var transportSecurityValidity = xhr.getResponseHeader('Strict-Transport-Security');
  540. if(transportSecurityValidity !== null && transportSecurityValidity.length > 8) {
  541. var firstComma = transportSecurityValidity.indexOf(";");
  542. if(firstComma !== -1) {
  543. transportSecurityValidity = transportSecurityValidity.substring(8, firstComma);
  544. } else {
  545. transportSecurityValidity = transportSecurityValidity.substring(8);
  546. }
  547. }
  548. var minimumSeconds = 15552000;
  549. if(isNaN(transportSecurityValidity) || transportSecurityValidity <= (minimumSeconds - 1)) {
  550. messages.push({
  551. 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}),
  552. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  553. });
  554. }
  555. } else {
  556. messages.push({
  557. 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}),
  558. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  559. });
  560. }
  561. } else {
  562. messages.push({
  563. msg: t('core', 'Error occurred while checking server setup'),
  564. type: OC.SetupChecks.MESSAGE_TYPE_ERROR
  565. });
  566. }
  567. return messages;
  568. }
  569. };
  570. })();