├── .bundle └── config ├── .editorconfig ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── _config.yml ├── _data ├── lang.yml └── lang │ ├── br.yml │ ├── en.yml │ ├── es.yml │ └── ja.yml ├── _includes ├── footer.html ├── head.html └── header.html ├── _layouts ├── default.html ├── page.html └── post.html ├── _posts ├── 2015-07-07-news.md ├── 2015-07-13-english-version.md ├── 2015-07-23-android-app.md ├── 2015-08-24-printable-version.md ├── 2015-09-02-trello.md ├── 2015-11-14-apple-store.md └── br │ ├── 2015-07-07-news.md │ ├── 2015-07-13-english-version.md │ ├── 2015-07-23-android-app.md │ ├── 2015-08-24-printable-version.md │ ├── 2015-09-02-trello.md │ ├── 2015-11-14-apple-store.md │ └── 2017-07-31-novo-dominio.md ├── _sass ├── _base.scss ├── _layout.scss ├── _print.scss └── _syntax-highlighting.scss ├── css └── main.scss ├── feed.xml ├── img ├── apple-store.png ├── badges │ ├── app-store.png │ └── google-play.png ├── favicon.png ├── listadesegurancawp.org.png ├── printable-version.png ├── screenshot.png ├── trello.png └── versao-imprimivel.png ├── index.html ├── items.br.md ├── items.es.md ├── items.ja.md ├── items.md ├── js ├── manifest.json └── script.js └── root-index.html /.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_WITHOUT: "test" 3 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/_config.yml -------------------------------------------------------------------------------- /_data/lang.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/_data/lang.yml -------------------------------------------------------------------------------- /_data/lang/br.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/_data/lang/br.yml -------------------------------------------------------------------------------- /_data/lang/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/_data/lang/en.yml -------------------------------------------------------------------------------- /_data/lang/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/_data/lang/es.yml -------------------------------------------------------------------------------- /_data/lang/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/_data/lang/ja.yml -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/_includes/footer.html -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/_includes/head.html -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/_includes/header.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/_layouts/page.html -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/_layouts/post.html -------------------------------------------------------------------------------- /_posts/2015-07-07-news.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/_posts/2015-07-07-news.md -------------------------------------------------------------------------------- /_posts/2015-07-13-english-version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/_posts/2015-07-13-english-version.md -------------------------------------------------------------------------------- /_posts/2015-07-23-android-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/_posts/2015-07-23-android-app.md -------------------------------------------------------------------------------- /_posts/2015-08-24-printable-version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/_posts/2015-08-24-printable-version.md -------------------------------------------------------------------------------- /_posts/2015-09-02-trello.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/_posts/2015-09-02-trello.md -------------------------------------------------------------------------------- /_posts/2015-11-14-apple-store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/_posts/2015-11-14-apple-store.md -------------------------------------------------------------------------------- /_posts/br/2015-07-07-news.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/_posts/br/2015-07-07-news.md -------------------------------------------------------------------------------- /_posts/br/2015-07-13-english-version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/_posts/br/2015-07-13-english-version.md -------------------------------------------------------------------------------- /_posts/br/2015-07-23-android-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/_posts/br/2015-07-23-android-app.md -------------------------------------------------------------------------------- /_posts/br/2015-08-24-printable-version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/_posts/br/2015-08-24-printable-version.md -------------------------------------------------------------------------------- /_posts/br/2015-09-02-trello.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/_posts/br/2015-09-02-trello.md -------------------------------------------------------------------------------- /_posts/br/2015-11-14-apple-store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/_posts/br/2015-11-14-apple-store.md -------------------------------------------------------------------------------- /_posts/br/2017-07-31-novo-dominio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/_posts/br/2017-07-31-novo-dominio.md -------------------------------------------------------------------------------- /_sass/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/_sass/_base.scss -------------------------------------------------------------------------------- /_sass/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/_sass/_layout.scss -------------------------------------------------------------------------------- /_sass/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/_sass/_print.scss -------------------------------------------------------------------------------- /_sass/_syntax-highlighting.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/_sass/_syntax-highlighting.scss -------------------------------------------------------------------------------- /css/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/css/main.scss -------------------------------------------------------------------------------- /feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/feed.xml -------------------------------------------------------------------------------- /img/apple-store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/img/apple-store.png -------------------------------------------------------------------------------- /img/badges/app-store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/img/badges/app-store.png -------------------------------------------------------------------------------- /img/badges/google-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/img/badges/google-play.png -------------------------------------------------------------------------------- /img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/img/favicon.png -------------------------------------------------------------------------------- /img/listadesegurancawp.org.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/img/listadesegurancawp.org.png -------------------------------------------------------------------------------- /img/printable-version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/img/printable-version.png -------------------------------------------------------------------------------- /img/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/img/screenshot.png -------------------------------------------------------------------------------- /img/trello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/img/trello.png -------------------------------------------------------------------------------- /img/versao-imprimivel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/img/versao-imprimivel.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/index.html -------------------------------------------------------------------------------- /items.br.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/items.br.md -------------------------------------------------------------------------------- /items.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/items.es.md -------------------------------------------------------------------------------- /items.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/items.ja.md -------------------------------------------------------------------------------- /items.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/items.md -------------------------------------------------------------------------------- /js/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/js/manifest.json -------------------------------------------------------------------------------- /js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/js/script.js -------------------------------------------------------------------------------- /root-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaelFunchal/wordpress-security-checklist/HEAD/root-index.html --------------------------------------------------------------------------------