├── CHANGELOG.md ├── Controller.php ├── LICENSE ├── Menu.php ├── PhpSecInfo ├── LICENSE ├── PhpSecInfo.php ├── README └── Test │ ├── Application │ ├── php.php │ └── piwik.php │ ├── CGI │ └── force_redirect.php │ ├── Core │ ├── allow_url_fopen.php │ ├── allow_url_include.php │ ├── display_errors.php │ ├── expose_php.php │ ├── file_uploads.php │ ├── gid.php │ ├── magic_quotes_gpc.php │ ├── memory_limit.php │ ├── open_basedir.php │ ├── post_max_size.php │ ├── register_globals.php │ ├── uid.php │ ├── upload_max_filesize.php │ └── upload_tmp_dir.php │ ├── Curl │ └── file_support.php │ ├── Session │ ├── save_path.php │ └── use_trans_sid.php │ ├── Test.php │ ├── Test_Application.php │ ├── Test_Cgi.php │ ├── Test_Core.php │ ├── Test_Curl.php │ └── Test_Session.php ├── README.md ├── SecurityInfo.php ├── docs └── faq.md ├── lang ├── am.json ├── ar.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── bs.json ├── ca.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── dv.json ├── el.json ├── en.json ├── eo.json ├── es-ar.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fr.json ├── ga.json ├── gl.json ├── gu.json ├── he.json ├── hi.json ├── hr.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja.json ├── ka.json ├── ko.json ├── ku.json ├── lb.json ├── lt.json ├── lv.json ├── ms.json ├── nb.json ├── nl.json ├── nn.json ├── pl.json ├── pt-br.json ├── pt.json ├── ro.json ├── ru.json ├── si.json ├── sk.json ├── sl.json ├── sq.json ├── sr.json ├── sv.json ├── ta.json ├── te.json ├── th.json ├── tl.json ├── tr.json ├── tzm.json ├── uk.json ├── ur.json ├── vi.json ├── zh-cn.json └── zh-tw.json ├── phpcs.xml ├── plugin.json ├── pull_request_template.md ├── screenshots └── Security_Info.png ├── stylesheets └── securityinfo.less ├── templates └── index.twig └── vue ├── dist ├── SecurityInfo.umd.js ├── SecurityInfo.umd.min.js └── umd.metadata.json └── src ├── TestResultsPage └── TestResultsPage.vue └── index.ts /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/Controller.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/LICENSE -------------------------------------------------------------------------------- /Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/Menu.php -------------------------------------------------------------------------------- /PhpSecInfo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/PhpSecInfo/LICENSE -------------------------------------------------------------------------------- /PhpSecInfo/PhpSecInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/PhpSecInfo/PhpSecInfo.php -------------------------------------------------------------------------------- /PhpSecInfo/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/PhpSecInfo/README -------------------------------------------------------------------------------- /PhpSecInfo/Test/Application/php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/PhpSecInfo/Test/Application/php.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Application/piwik.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/PhpSecInfo/Test/Application/piwik.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/CGI/force_redirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/PhpSecInfo/Test/CGI/force_redirect.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Core/allow_url_fopen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/PhpSecInfo/Test/Core/allow_url_fopen.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Core/allow_url_include.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/PhpSecInfo/Test/Core/allow_url_include.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Core/display_errors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/PhpSecInfo/Test/Core/display_errors.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Core/expose_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/PhpSecInfo/Test/Core/expose_php.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Core/file_uploads.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/PhpSecInfo/Test/Core/file_uploads.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Core/gid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/PhpSecInfo/Test/Core/gid.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Core/magic_quotes_gpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/PhpSecInfo/Test/Core/magic_quotes_gpc.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Core/memory_limit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/PhpSecInfo/Test/Core/memory_limit.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Core/open_basedir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/PhpSecInfo/Test/Core/open_basedir.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Core/post_max_size.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/PhpSecInfo/Test/Core/post_max_size.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Core/register_globals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/PhpSecInfo/Test/Core/register_globals.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Core/uid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/PhpSecInfo/Test/Core/uid.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Core/upload_max_filesize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/PhpSecInfo/Test/Core/upload_max_filesize.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Core/upload_tmp_dir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/PhpSecInfo/Test/Core/upload_tmp_dir.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Curl/file_support.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/PhpSecInfo/Test/Curl/file_support.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Session/save_path.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/PhpSecInfo/Test/Session/save_path.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Session/use_trans_sid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/PhpSecInfo/Test/Session/use_trans_sid.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/PhpSecInfo/Test/Test.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Test_Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/PhpSecInfo/Test/Test_Application.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Test_Cgi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/PhpSecInfo/Test/Test_Cgi.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Test_Core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/PhpSecInfo/Test/Test_Core.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Test_Curl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/PhpSecInfo/Test/Test_Curl.php -------------------------------------------------------------------------------- /PhpSecInfo/Test/Test_Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/PhpSecInfo/Test/Test_Session.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/README.md -------------------------------------------------------------------------------- /SecurityInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/SecurityInfo.php -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/docs/faq.md -------------------------------------------------------------------------------- /lang/am.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /lang/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/ar.json -------------------------------------------------------------------------------- /lang/az.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /lang/be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/be.json -------------------------------------------------------------------------------- /lang/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/bg.json -------------------------------------------------------------------------------- /lang/bn.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /lang/bs.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /lang/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/ca.json -------------------------------------------------------------------------------- /lang/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/cs.json -------------------------------------------------------------------------------- /lang/cy.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /lang/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/da.json -------------------------------------------------------------------------------- /lang/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/de.json -------------------------------------------------------------------------------- /lang/dv.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /lang/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/el.json -------------------------------------------------------------------------------- /lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/en.json -------------------------------------------------------------------------------- /lang/eo.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /lang/es-ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/es-ar.json -------------------------------------------------------------------------------- /lang/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/es.json -------------------------------------------------------------------------------- /lang/et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/et.json -------------------------------------------------------------------------------- /lang/eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/eu.json -------------------------------------------------------------------------------- /lang/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/fa.json -------------------------------------------------------------------------------- /lang/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/fi.json -------------------------------------------------------------------------------- /lang/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/fr.json -------------------------------------------------------------------------------- /lang/ga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/ga.json -------------------------------------------------------------------------------- /lang/gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/gl.json -------------------------------------------------------------------------------- /lang/gu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/gu.json -------------------------------------------------------------------------------- /lang/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/he.json -------------------------------------------------------------------------------- /lang/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/hi.json -------------------------------------------------------------------------------- /lang/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/hr.json -------------------------------------------------------------------------------- /lang/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/hu.json -------------------------------------------------------------------------------- /lang/hy.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /lang/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/id.json -------------------------------------------------------------------------------- /lang/is.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /lang/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/it.json -------------------------------------------------------------------------------- /lang/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/ja.json -------------------------------------------------------------------------------- /lang/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/ka.json -------------------------------------------------------------------------------- /lang/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/ko.json -------------------------------------------------------------------------------- /lang/ku.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/ku.json -------------------------------------------------------------------------------- /lang/lb.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /lang/lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/lt.json -------------------------------------------------------------------------------- /lang/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/lv.json -------------------------------------------------------------------------------- /lang/ms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/ms.json -------------------------------------------------------------------------------- /lang/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/nb.json -------------------------------------------------------------------------------- /lang/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/nl.json -------------------------------------------------------------------------------- /lang/nn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/nn.json -------------------------------------------------------------------------------- /lang/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/pl.json -------------------------------------------------------------------------------- /lang/pt-br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/pt-br.json -------------------------------------------------------------------------------- /lang/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/pt.json -------------------------------------------------------------------------------- /lang/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/ro.json -------------------------------------------------------------------------------- /lang/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/ru.json -------------------------------------------------------------------------------- /lang/si.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /lang/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/sk.json -------------------------------------------------------------------------------- /lang/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/sl.json -------------------------------------------------------------------------------- /lang/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/sq.json -------------------------------------------------------------------------------- /lang/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/sr.json -------------------------------------------------------------------------------- /lang/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/sv.json -------------------------------------------------------------------------------- /lang/ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/ta.json -------------------------------------------------------------------------------- /lang/te.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/te.json -------------------------------------------------------------------------------- /lang/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/th.json -------------------------------------------------------------------------------- /lang/tl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/tl.json -------------------------------------------------------------------------------- /lang/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/tr.json -------------------------------------------------------------------------------- /lang/tzm.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /lang/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/uk.json -------------------------------------------------------------------------------- /lang/ur.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /lang/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/vi.json -------------------------------------------------------------------------------- /lang/zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/zh-cn.json -------------------------------------------------------------------------------- /lang/zh-tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/lang/zh-tw.json -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/phpcs.xml -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/plugin.json -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /screenshots/Security_Info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/screenshots/Security_Info.png -------------------------------------------------------------------------------- /stylesheets/securityinfo.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/stylesheets/securityinfo.less -------------------------------------------------------------------------------- /templates/index.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/templates/index.twig -------------------------------------------------------------------------------- /vue/dist/SecurityInfo.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/vue/dist/SecurityInfo.umd.js -------------------------------------------------------------------------------- /vue/dist/SecurityInfo.umd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/vue/dist/SecurityInfo.umd.min.js -------------------------------------------------------------------------------- /vue/dist/umd.metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/vue/dist/umd.metadata.json -------------------------------------------------------------------------------- /vue/src/TestResultsPage/TestResultsPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/vue/src/TestResultsPage/TestResultsPage.vue -------------------------------------------------------------------------------- /vue/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-SecurityInfo/HEAD/vue/src/index.ts --------------------------------------------------------------------------------