From 663937fd957e1d4f7054eb79806c5d345b6b1096 Mon Sep 17 00:00:00 2001 From: Steve <stryan@cs.umd.edu> Date: Mon, 9 Sep 2019 16:08:01 -0400 Subject: [PATCH] add readme --- README | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 README diff --git a/README b/README new file mode 100644 index 0000000..7252a0a --- /dev/null +++ b/README @@ -0,0 +1,24 @@ +A *very* simple Java servlet protected behind UMD CAS. + +Currently Implemented: +Basic Servlet (page visit counter) +CAS Login +CAS Logout (through link) + +Needs to Be Implemented: +Proper session destruction on CAS logout +Removing "?ticket" number on redirect from CAS login + +Tested In: +Red Hat 7.6 +Tomcat 8 + +Dependencies: +cas-client-core-3.5.1 (http://central.maven.org/maven2/org/jasig/cas/client/cas-client-core/3.5.1/) +slf4j-api-1.7.28 (https://www.slf4j.org/download.html) +slf4j-simple-1.7.28 (https://www.slf4j.org/download.html) + +Simple/Naive Method of Adding CAS: +1. Drop dependencies in WEB-INF +2. Add CAS filters +3. Modify filters to only apply for "secured" web content -- GitLab