├── LICENSE ├── README.md ├── checker ├── checker.go ├── cookie_checker.go ├── css_checker.go ├── html_checker.go ├── https_checker.go └── secure_header_checker.go ├── penalty └── penalty.go ├── privacyscore.go ├── result └── result.go ├── scoredb └── scoredb.go ├── server ├── server.go ├── template.go └── templates │ ├── about.tpl │ ├── base.tpl │ ├── error.tpl │ ├── index.tpl │ └── result.tpl └── utils └── utils.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciimoo/privacyscore/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciimoo/privacyscore/HEAD/README.md -------------------------------------------------------------------------------- /checker/checker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciimoo/privacyscore/HEAD/checker/checker.go -------------------------------------------------------------------------------- /checker/cookie_checker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciimoo/privacyscore/HEAD/checker/cookie_checker.go -------------------------------------------------------------------------------- /checker/css_checker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciimoo/privacyscore/HEAD/checker/css_checker.go -------------------------------------------------------------------------------- /checker/html_checker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciimoo/privacyscore/HEAD/checker/html_checker.go -------------------------------------------------------------------------------- /checker/https_checker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciimoo/privacyscore/HEAD/checker/https_checker.go -------------------------------------------------------------------------------- /checker/secure_header_checker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciimoo/privacyscore/HEAD/checker/secure_header_checker.go -------------------------------------------------------------------------------- /penalty/penalty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciimoo/privacyscore/HEAD/penalty/penalty.go -------------------------------------------------------------------------------- /privacyscore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciimoo/privacyscore/HEAD/privacyscore.go -------------------------------------------------------------------------------- /result/result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciimoo/privacyscore/HEAD/result/result.go -------------------------------------------------------------------------------- /scoredb/scoredb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciimoo/privacyscore/HEAD/scoredb/scoredb.go -------------------------------------------------------------------------------- /server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciimoo/privacyscore/HEAD/server/server.go -------------------------------------------------------------------------------- /server/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciimoo/privacyscore/HEAD/server/template.go -------------------------------------------------------------------------------- /server/templates/about.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciimoo/privacyscore/HEAD/server/templates/about.tpl -------------------------------------------------------------------------------- /server/templates/base.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciimoo/privacyscore/HEAD/server/templates/base.tpl -------------------------------------------------------------------------------- /server/templates/error.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciimoo/privacyscore/HEAD/server/templates/error.tpl -------------------------------------------------------------------------------- /server/templates/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciimoo/privacyscore/HEAD/server/templates/index.tpl -------------------------------------------------------------------------------- /server/templates/result.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciimoo/privacyscore/HEAD/server/templates/result.tpl -------------------------------------------------------------------------------- /utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asciimoo/privacyscore/HEAD/utils/utils.go --------------------------------------------------------------------------------