├── .codeclimate.yml ├── .editorconfig ├── .eslintrc.json ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── HOWTO.md ├── LICENSE.md ├── README.md ├── TODO.md ├── config ├── app.json ├── help.json ├── minimist.json └── test.json ├── example ├── rules │ └── custom-rule.js └── sources │ └── list.txt ├── index.js ├── lib ├── app.js ├── fs.js ├── help.js ├── log.js ├── rules │ ├── directory-listing.js │ ├── fpd-vulnerability.js │ ├── sensitive-files.js │ └── wp-login.js ├── url.js └── version.js ├── package.json ├── test └── test.js └── yarn.lock /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergejmueller/wpcheck/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergejmueller/wpcheck/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergejmueller/wpcheck/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .npm 3 | logs 4 | *.log 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergejmueller/wpcheck/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergejmueller/wpcheck/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /HOWTO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergejmueller/wpcheck/HEAD/HOWTO.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergejmueller/wpcheck/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergejmueller/wpcheck/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergejmueller/wpcheck/HEAD/TODO.md -------------------------------------------------------------------------------- /config/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergejmueller/wpcheck/HEAD/config/app.json -------------------------------------------------------------------------------- /config/help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergejmueller/wpcheck/HEAD/config/help.json -------------------------------------------------------------------------------- /config/minimist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergejmueller/wpcheck/HEAD/config/minimist.json -------------------------------------------------------------------------------- /config/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergejmueller/wpcheck/HEAD/config/test.json -------------------------------------------------------------------------------- /example/rules/custom-rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergejmueller/wpcheck/HEAD/example/rules/custom-rule.js -------------------------------------------------------------------------------- /example/sources/list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergejmueller/wpcheck/HEAD/example/sources/list.txt -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergejmueller/wpcheck/HEAD/index.js -------------------------------------------------------------------------------- /lib/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergejmueller/wpcheck/HEAD/lib/app.js -------------------------------------------------------------------------------- /lib/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergejmueller/wpcheck/HEAD/lib/fs.js -------------------------------------------------------------------------------- /lib/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergejmueller/wpcheck/HEAD/lib/help.js -------------------------------------------------------------------------------- /lib/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergejmueller/wpcheck/HEAD/lib/log.js -------------------------------------------------------------------------------- /lib/rules/directory-listing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergejmueller/wpcheck/HEAD/lib/rules/directory-listing.js -------------------------------------------------------------------------------- /lib/rules/fpd-vulnerability.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergejmueller/wpcheck/HEAD/lib/rules/fpd-vulnerability.js -------------------------------------------------------------------------------- /lib/rules/sensitive-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergejmueller/wpcheck/HEAD/lib/rules/sensitive-files.js -------------------------------------------------------------------------------- /lib/rules/wp-login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergejmueller/wpcheck/HEAD/lib/rules/wp-login.js -------------------------------------------------------------------------------- /lib/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergejmueller/wpcheck/HEAD/lib/url.js -------------------------------------------------------------------------------- /lib/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergejmueller/wpcheck/HEAD/lib/version.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergejmueller/wpcheck/HEAD/package.json -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergejmueller/wpcheck/HEAD/test/test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergejmueller/wpcheck/HEAD/yarn.lock --------------------------------------------------------------------------------