forked from WebGoat/WebGoat
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed minor issues for properties and starting WebGoat
- Loading branch information
Showing
7 changed files
with
18 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,7 @@ [email protected]' -- | |
101 or 1=1 | ||
|
||
Smith' union select userid,user_name, password,cookie,cookie, cookie,userid from user_system_data -- | ||
Smith' union select all 1, '2' ,user_name,password, 'MC', cookie, 2 from user_system_data -- | ||
|
||
## XXE ## | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
FROM openjdk:8-jre-slim | ||
|
||
ARG webwolf_version=8.0-SNAPSHOT | ||
|
||
RUN useradd --home-dir /home/webwolf --create-home -U webwolf | ||
|
||
RUN apt-get update; apt-get install curl -y | ||
|
||
COPY start.sh /home/webwolf/start.sh | ||
RUN chmod +x /home/webwolf/start.sh | ||
|
||
USER webwolf | ||
RUN cd /home/webwolf/ | ||
COPY target/webwolf-8.0-SNAPSHOT.jar /home/webwolf/webwolf.jar | ||
COPY start.sh /home/webwolf/start.sh | ||
COPY target/webwolf-${webwolf_version}.jar /home/webwolf/webwolf.jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters