├── .gitignore ├── LICENSE ├── README.md ├── practice00 ├── README.md └── server.go ├── practice01-1 ├── README.md ├── server.go └── templates │ ├── authentication.html │ ├── callback.html │ ├── error.html │ └── index.html ├── practice01-2 ├── README.md ├── server.go └── templates │ ├── authentication.html │ ├── callback.html │ ├── error.html │ └── index.html ├── practice02-answer ├── README.md ├── server.go └── templates │ ├── callback.html │ ├── error.html │ └── index.html ├── practice02 ├── README.md ├── server.go └── templates │ ├── callback.html │ ├── error.html │ └── index.html ├── practice03-answer ├── README.md ├── server.go └── templates │ ├── callback.html │ ├── error.html │ └── index.html └── practice03 ├── README.md ├── server.go └── templates ├── callback.html ├── error.html └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/README.md -------------------------------------------------------------------------------- /practice00/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/practice00/README.md -------------------------------------------------------------------------------- /practice00/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/practice00/server.go -------------------------------------------------------------------------------- /practice01-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/practice01-1/README.md -------------------------------------------------------------------------------- /practice01-1/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/practice01-1/server.go -------------------------------------------------------------------------------- /practice01-1/templates/authentication.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/practice01-1/templates/authentication.html -------------------------------------------------------------------------------- /practice01-1/templates/callback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/practice01-1/templates/callback.html -------------------------------------------------------------------------------- /practice01-1/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/practice01-1/templates/error.html -------------------------------------------------------------------------------- /practice01-1/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/practice01-1/templates/index.html -------------------------------------------------------------------------------- /practice01-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/practice01-2/README.md -------------------------------------------------------------------------------- /practice01-2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/practice01-2/server.go -------------------------------------------------------------------------------- /practice01-2/templates/authentication.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/practice01-2/templates/authentication.html -------------------------------------------------------------------------------- /practice01-2/templates/callback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/practice01-2/templates/callback.html -------------------------------------------------------------------------------- /practice01-2/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/practice01-2/templates/error.html -------------------------------------------------------------------------------- /practice01-2/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/practice01-2/templates/index.html -------------------------------------------------------------------------------- /practice02-answer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/practice02-answer/README.md -------------------------------------------------------------------------------- /practice02-answer/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/practice02-answer/server.go -------------------------------------------------------------------------------- /practice02-answer/templates/callback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/practice02-answer/templates/callback.html -------------------------------------------------------------------------------- /practice02-answer/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/practice02-answer/templates/error.html -------------------------------------------------------------------------------- /practice02-answer/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/practice02-answer/templates/index.html -------------------------------------------------------------------------------- /practice02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/practice02/README.md -------------------------------------------------------------------------------- /practice02/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/practice02/server.go -------------------------------------------------------------------------------- /practice02/templates/callback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/practice02/templates/callback.html -------------------------------------------------------------------------------- /practice02/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/practice02/templates/error.html -------------------------------------------------------------------------------- /practice02/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/practice02/templates/index.html -------------------------------------------------------------------------------- /practice03-answer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/practice03-answer/README.md -------------------------------------------------------------------------------- /practice03-answer/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/practice03-answer/server.go -------------------------------------------------------------------------------- /practice03-answer/templates/callback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/practice03-answer/templates/callback.html -------------------------------------------------------------------------------- /practice03-answer/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/practice03-answer/templates/error.html -------------------------------------------------------------------------------- /practice03-answer/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/practice03-answer/templates/index.html -------------------------------------------------------------------------------- /practice03/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/practice03/README.md -------------------------------------------------------------------------------- /practice03/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/practice03/server.go -------------------------------------------------------------------------------- /practice03/templates/callback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/practice03/templates/callback.html -------------------------------------------------------------------------------- /practice03/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/practice03/templates/error.html -------------------------------------------------------------------------------- /practice03/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kura-lab/seccamp2019/HEAD/practice03/templates/index.html --------------------------------------------------------------------------------