Compare commits
13 Commits
Author | SHA1 | Date | |
---|---|---|---|
edd9aa36c2 | |||
27fe1850de | |||
5c2bbd1227 | |||
683b629663 | |||
04908a81e7 | |||
701de68ef2 | |||
81ed738493 | |||
c03d153978 | |||
6ab04db2ee | |||
a108a937b5 | |||
6d5ea57606 | |||
79fd88eeb6 | |||
64b10c1a59 |
8
.github/workflows/release.yml
vendored
8
.github/workflows/release.yml
vendored
@ -17,11 +17,11 @@ jobs:
|
||||
id: tag
|
||||
uses: dawidd6/action-get-tag@v1
|
||||
|
||||
- name: Set up JDK 15
|
||||
- name: Set up JDK 17
|
||||
uses: actions/setup-java@v3
|
||||
with:
|
||||
distribution: 'zulu'
|
||||
java-version: 15
|
||||
java-version: 17
|
||||
architecture: x64
|
||||
|
||||
- name: Cache Maven packages
|
||||
@ -46,7 +46,7 @@ jobs:
|
||||
with:
|
||||
draft: false
|
||||
files: |
|
||||
webgoat/target/webgoat-${{ env.WEBGOAT_MAVEN_VERSION }}.jar
|
||||
target/webgoat-${{ env.WEBGOAT_MAVEN_VERSION }}.jar
|
||||
body: |
|
||||
## Version ${{ steps.tag.outputs.tag }}
|
||||
|
||||
@ -58,6 +58,8 @@ jobs:
|
||||
|
||||
- [#743 - Character encoding errors](https://github.com/WebGoat/WebGoat/issues/743)
|
||||
|
||||
Full change log: https://github.com/WebGoat/WebGoat/compare/${{ steps.tag.outputs.tag }}...${{ steps.tag.outputs.tag }}
|
||||
|
||||
|
||||
## Contributors
|
||||
|
||||
|
@ -62,7 +62,7 @@ This way, you can start where you left off. If you remove the container, you nee
|
||||
Download the latest WebGoat release from [https://github.com/WebGoat/WebGoat/releases](https://github.com/WebGoat/WebGoat/releases)
|
||||
|
||||
```shell
|
||||
java -Dfile.encoding=UTF-8 -Dwebgoat.port=8080 -Dwebwolf.port=9090 -jar webgoat-2023.0.jar
|
||||
java -Dfile.encoding=UTF-8 -Dwebgoat.port=8080 -Dwebwolf.port=9090 -jar webgoat-2023.3.jar
|
||||
```
|
||||
|
||||
Click the link in the log to start WebGoat.
|
||||
@ -125,7 +125,7 @@ For instance running as a jar on a Linux/macOS it will look like this:
|
||||
```Shell
|
||||
export EXCLUDE_CATEGORIES="CLIENT_SIDE,GENERAL,CHALLENGE"
|
||||
export EXCLUDE_LESSONS="SqlInjectionAdvanced,SqlInjectionMitigations"
|
||||
java -jar target/webgoat-2023.0-SNAPSHOT.jar
|
||||
java -jar target/webgoat-2023.3-SNAPSHOT.jar
|
||||
```
|
||||
|
||||
Or in a docker run it would (once this version is pushed into docker hub) look like this:
|
||||
|
@ -1,8 +1,8 @@
|
||||
# WebGoat release notes
|
||||
|
||||
## Version 2023.0
|
||||
## Version 2023.3
|
||||
|
||||
With great pleasure, we present you with a new release of WebGoat **2023.0**. Finally, it has been a while. This year starts with a new release of WebGoat. This year we will undoubtedly release more often. From this release on, we began to use a new versioning scheme (https://calver.org/#scheme).
|
||||
With great pleasure, we present you with a new release of WebGoat **2023.3**. Finally, it has been a while. This year starts with a new release of WebGoat. This year we will undoubtedly release more often. From this release on, we began to use a new versioning scheme (https://calver.org/#scheme).
|
||||
|
||||
A big thanks to René Zubcevic and Àngel Ollé Blázquez for keeping the project alive this last year, and hopefully, we can make
|
||||
many more releases this year.
|
||||
@ -34,7 +34,6 @@ many more releases this year.
|
||||
|
||||
### Bug fixes
|
||||
|
||||
|
||||
- [#1193 Vulnerable component lesson - java.desktop does not "opens java.beans" to unnamed module](https://github.com/WebGoat/WebGoat/issues/1193)
|
||||
- [#1176 Minor: XXE lesson 12 patch not reset by 'lesson reset' while it IS reset by leaving/returning to lesson](https://github.com/WebGoat/WebGoat/issues/1176)
|
||||
- [#1134 "Exploiting XStream" assignment does not work](https://github.com/WebGoat/WebGoat/issues/1134)
|
||||
|
Reference in New Issue
Block a user