├── README.md └── thymeleaf-problem ├── WCTF-WP.pptx ├── src ├── .DS_Store ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── thymeleaf-problem │ ├── build.gradle │ ├── build │ ├── classes │ │ └── java │ │ │ └── main │ │ │ └── me │ │ │ └── threedr3am │ │ │ └── thymeleaf │ │ │ ├── ThymeleafApplication.class │ │ │ ├── config │ │ │ ├── JWTConfig.class │ │ │ ├── SessionFilterConfig.class │ │ │ ├── SwaggerConfig.class │ │ │ └── URISpelInjectFilterConfig.class │ │ │ ├── controller │ │ │ ├── LoginController.class │ │ │ └── auth │ │ │ │ ├── RoleController.class │ │ │ │ └── UserInfoController.class │ │ │ ├── entity │ │ │ ├── Result$ResultBuilder.class │ │ │ └── Result.class │ │ │ └── filter │ │ │ ├── SessionFilter.class │ │ │ └── URISpelInjectFilter.class │ ├── libs │ │ └── thymeleaf-problem-1.0.0-SNAPSHOT.jar │ ├── resources │ │ └── main │ │ │ ├── application.yml │ │ │ └── templates │ │ │ ├── home.html │ │ │ ├── login-error.html │ │ │ └── login.html │ └── tmp │ │ └── bootJar │ │ └── MANIFEST.MF │ └── src │ └── main │ ├── java │ └── me │ │ └── threedr3am │ │ └── thymeleaf │ │ ├── ThymeleafApplication.java │ │ ├── config │ │ ├── JWTConfig.java │ │ ├── SessionFilterConfig.java │ │ ├── SwaggerConfig.java │ │ └── URISpelInjectFilterConfig.java │ │ ├── controller │ │ ├── LoginController.java │ │ └── auth │ │ │ ├── RoleController.java │ │ │ └── UserInfoController.java │ │ ├── entity │ │ └── Result.java │ │ └── filter │ │ ├── SessionFilter.java │ │ └── URISpelInjectFilter.java │ └── resources │ ├── application.yml │ └── templates │ ├── home.html │ ├── login-error.html │ └── login.html └── thymeleaf-problem.jar /README.md: -------------------------------------------------------------------------------- 1 | # WCTF-2020 -------------------------------------------------------------------------------- /thymeleaf-problem/WCTF-WP.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/WCTF-WP.pptx -------------------------------------------------------------------------------- /thymeleaf-problem/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/.DS_Store -------------------------------------------------------------------------------- /thymeleaf-problem/src/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/build.gradle -------------------------------------------------------------------------------- /thymeleaf-problem/src/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/gradle.properties -------------------------------------------------------------------------------- /thymeleaf-problem/src/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /thymeleaf-problem/src/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /thymeleaf-problem/src/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/gradlew -------------------------------------------------------------------------------- /thymeleaf-problem/src/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/gradlew.bat -------------------------------------------------------------------------------- /thymeleaf-problem/src/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/settings.gradle -------------------------------------------------------------------------------- /thymeleaf-problem/src/thymeleaf-problem/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/thymeleaf-problem/build.gradle -------------------------------------------------------------------------------- /thymeleaf-problem/src/thymeleaf-problem/build/classes/java/main/me/threedr3am/thymeleaf/ThymeleafApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/thymeleaf-problem/build/classes/java/main/me/threedr3am/thymeleaf/ThymeleafApplication.class -------------------------------------------------------------------------------- /thymeleaf-problem/src/thymeleaf-problem/build/classes/java/main/me/threedr3am/thymeleaf/config/JWTConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/thymeleaf-problem/build/classes/java/main/me/threedr3am/thymeleaf/config/JWTConfig.class -------------------------------------------------------------------------------- /thymeleaf-problem/src/thymeleaf-problem/build/classes/java/main/me/threedr3am/thymeleaf/config/SessionFilterConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/thymeleaf-problem/build/classes/java/main/me/threedr3am/thymeleaf/config/SessionFilterConfig.class -------------------------------------------------------------------------------- /thymeleaf-problem/src/thymeleaf-problem/build/classes/java/main/me/threedr3am/thymeleaf/config/SwaggerConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/thymeleaf-problem/build/classes/java/main/me/threedr3am/thymeleaf/config/SwaggerConfig.class -------------------------------------------------------------------------------- /thymeleaf-problem/src/thymeleaf-problem/build/classes/java/main/me/threedr3am/thymeleaf/config/URISpelInjectFilterConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/thymeleaf-problem/build/classes/java/main/me/threedr3am/thymeleaf/config/URISpelInjectFilterConfig.class -------------------------------------------------------------------------------- /thymeleaf-problem/src/thymeleaf-problem/build/classes/java/main/me/threedr3am/thymeleaf/controller/LoginController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/thymeleaf-problem/build/classes/java/main/me/threedr3am/thymeleaf/controller/LoginController.class -------------------------------------------------------------------------------- /thymeleaf-problem/src/thymeleaf-problem/build/classes/java/main/me/threedr3am/thymeleaf/controller/auth/RoleController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/thymeleaf-problem/build/classes/java/main/me/threedr3am/thymeleaf/controller/auth/RoleController.class -------------------------------------------------------------------------------- /thymeleaf-problem/src/thymeleaf-problem/build/classes/java/main/me/threedr3am/thymeleaf/controller/auth/UserInfoController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/thymeleaf-problem/build/classes/java/main/me/threedr3am/thymeleaf/controller/auth/UserInfoController.class -------------------------------------------------------------------------------- /thymeleaf-problem/src/thymeleaf-problem/build/classes/java/main/me/threedr3am/thymeleaf/entity/Result$ResultBuilder.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/thymeleaf-problem/build/classes/java/main/me/threedr3am/thymeleaf/entity/Result$ResultBuilder.class -------------------------------------------------------------------------------- /thymeleaf-problem/src/thymeleaf-problem/build/classes/java/main/me/threedr3am/thymeleaf/entity/Result.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/thymeleaf-problem/build/classes/java/main/me/threedr3am/thymeleaf/entity/Result.class -------------------------------------------------------------------------------- /thymeleaf-problem/src/thymeleaf-problem/build/classes/java/main/me/threedr3am/thymeleaf/filter/SessionFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/thymeleaf-problem/build/classes/java/main/me/threedr3am/thymeleaf/filter/SessionFilter.class -------------------------------------------------------------------------------- /thymeleaf-problem/src/thymeleaf-problem/build/classes/java/main/me/threedr3am/thymeleaf/filter/URISpelInjectFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/thymeleaf-problem/build/classes/java/main/me/threedr3am/thymeleaf/filter/URISpelInjectFilter.class -------------------------------------------------------------------------------- /thymeleaf-problem/src/thymeleaf-problem/build/libs/thymeleaf-problem-1.0.0-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/thymeleaf-problem/build/libs/thymeleaf-problem-1.0.0-SNAPSHOT.jar -------------------------------------------------------------------------------- /thymeleaf-problem/src/thymeleaf-problem/build/resources/main/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 8080 -------------------------------------------------------------------------------- /thymeleaf-problem/src/thymeleaf-problem/build/resources/main/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/thymeleaf-problem/build/resources/main/templates/home.html -------------------------------------------------------------------------------- /thymeleaf-problem/src/thymeleaf-problem/build/resources/main/templates/login-error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/thymeleaf-problem/build/resources/main/templates/login-error.html -------------------------------------------------------------------------------- /thymeleaf-problem/src/thymeleaf-problem/build/resources/main/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/thymeleaf-problem/build/resources/main/templates/login.html -------------------------------------------------------------------------------- /thymeleaf-problem/src/thymeleaf-problem/build/tmp/bootJar/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/thymeleaf-problem/build/tmp/bootJar/MANIFEST.MF -------------------------------------------------------------------------------- /thymeleaf-problem/src/thymeleaf-problem/src/main/java/me/threedr3am/thymeleaf/ThymeleafApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/thymeleaf-problem/src/main/java/me/threedr3am/thymeleaf/ThymeleafApplication.java -------------------------------------------------------------------------------- /thymeleaf-problem/src/thymeleaf-problem/src/main/java/me/threedr3am/thymeleaf/config/JWTConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/thymeleaf-problem/src/main/java/me/threedr3am/thymeleaf/config/JWTConfig.java -------------------------------------------------------------------------------- /thymeleaf-problem/src/thymeleaf-problem/src/main/java/me/threedr3am/thymeleaf/config/SessionFilterConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/thymeleaf-problem/src/main/java/me/threedr3am/thymeleaf/config/SessionFilterConfig.java -------------------------------------------------------------------------------- /thymeleaf-problem/src/thymeleaf-problem/src/main/java/me/threedr3am/thymeleaf/config/SwaggerConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/thymeleaf-problem/src/main/java/me/threedr3am/thymeleaf/config/SwaggerConfig.java -------------------------------------------------------------------------------- /thymeleaf-problem/src/thymeleaf-problem/src/main/java/me/threedr3am/thymeleaf/config/URISpelInjectFilterConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/thymeleaf-problem/src/main/java/me/threedr3am/thymeleaf/config/URISpelInjectFilterConfig.java -------------------------------------------------------------------------------- /thymeleaf-problem/src/thymeleaf-problem/src/main/java/me/threedr3am/thymeleaf/controller/LoginController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/thymeleaf-problem/src/main/java/me/threedr3am/thymeleaf/controller/LoginController.java -------------------------------------------------------------------------------- /thymeleaf-problem/src/thymeleaf-problem/src/main/java/me/threedr3am/thymeleaf/controller/auth/RoleController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/thymeleaf-problem/src/main/java/me/threedr3am/thymeleaf/controller/auth/RoleController.java -------------------------------------------------------------------------------- /thymeleaf-problem/src/thymeleaf-problem/src/main/java/me/threedr3am/thymeleaf/controller/auth/UserInfoController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/thymeleaf-problem/src/main/java/me/threedr3am/thymeleaf/controller/auth/UserInfoController.java -------------------------------------------------------------------------------- /thymeleaf-problem/src/thymeleaf-problem/src/main/java/me/threedr3am/thymeleaf/entity/Result.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/thymeleaf-problem/src/main/java/me/threedr3am/thymeleaf/entity/Result.java -------------------------------------------------------------------------------- /thymeleaf-problem/src/thymeleaf-problem/src/main/java/me/threedr3am/thymeleaf/filter/SessionFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/thymeleaf-problem/src/main/java/me/threedr3am/thymeleaf/filter/SessionFilter.java -------------------------------------------------------------------------------- /thymeleaf-problem/src/thymeleaf-problem/src/main/java/me/threedr3am/thymeleaf/filter/URISpelInjectFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/thymeleaf-problem/src/main/java/me/threedr3am/thymeleaf/filter/URISpelInjectFilter.java -------------------------------------------------------------------------------- /thymeleaf-problem/src/thymeleaf-problem/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 8080 -------------------------------------------------------------------------------- /thymeleaf-problem/src/thymeleaf-problem/src/main/resources/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/thymeleaf-problem/src/main/resources/templates/home.html -------------------------------------------------------------------------------- /thymeleaf-problem/src/thymeleaf-problem/src/main/resources/templates/login-error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/thymeleaf-problem/src/main/resources/templates/login-error.html -------------------------------------------------------------------------------- /thymeleaf-problem/src/thymeleaf-problem/src/main/resources/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/src/thymeleaf-problem/src/main/resources/templates/login.html -------------------------------------------------------------------------------- /thymeleaf-problem/thymeleaf-problem.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3kapig/WCTF-2020/HEAD/thymeleaf-problem/thymeleaf-problem.jar --------------------------------------------------------------------------------