Skip to content

Commit ed8f9da

Browse files
committed
Update POM file with new version: 1.4.4
1 parent 2bb9722 commit ed8f9da

9 files changed

+17
-17
lines changed

.github/scripts/docker-create-and-push.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ git restore src/main/resources/.bash_history
8787
echo "committing changes and new pom file with version ${tag}"
8888
git commit -am "Update POM file with new version: ${tag}"
8989
git push
90-
#echo "tagging version"
91-
#git tag -a $tag -m "${message}"
92-
#git push --tags
90+
echo "tagging version"
91+
git tag -a $tag -m "${message}"
92+
git push --tags
9393

9494
echo "Don't forget to update experiment-bed"
9595
echo "git checkout experiment-bed && git merge master --no-edit"

Dockerfile.web

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
FROM jeroenwillemsen/wrongsecrets:challenge19test11-no-vault
1+
FROM jeroenwillemsen/wrongsecrets:1.4.4-no-vault
22

3-
ARG argBasedVersion="1.4.3"
3+
ARG argBasedVersion="1.4.4"
44
ARG CANARY_URLS="http://canarytokens.com/terms/about/s7cfbdakys13246ewd8ivuvku/post.jsp,http://canarytokens.com/terms/about/y0all60b627gzp19ahqh7rl6j/post.jsp"
55
ENV APP_VERSION=$argBasedVersion
66
ENV K8S_ENV=Heroku(Docker)

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Need support? Contact us via [OWASP Slack](https://owasp.slack.com/archives/C02K
1515

1616
## Basic docker exercises
1717

18-
_Can be used for challenges 1-4, 8, 12-18_
18+
_Can be used for challenges 1-4, 8, 12-19_
1919

2020
For the basic docker exercises you currently require:
2121

@@ -25,7 +25,7 @@ For the basic docker exercises you currently require:
2525
You can install it by doing:
2626

2727
```bash
28-
docker run -p 8080:8080 jeroenwillemsen/wrongsecrets:1.4.3-no-vault
28+
docker run -p 8080:8080 jeroenwillemsen/wrongsecrets:1.4.4-no-vault
2929
```
3030

3131
Now you can try to find the secrets by means of solving the challenge offered at:
@@ -42,6 +42,7 @@ Now you can try to find the secrets by means of solving the challenge offered at
4242
- [localhost:8080/challenge/16](http://localhost:8080/challenge/16)
4343
- [localhost:8080/challenge/17](http://localhost:8080/challenge/17)
4444
- [localhost:8080/challenge/18](http://localhost:8080/challenge/18)
45+
- [localhost:8080/challenge/18](http://localhost:8080/challenge/19)
4546

4647
Note that these challenges are still very basic, and so are their explanations. Feel free to file a PR to make them look better ;-).
4748

@@ -58,7 +59,7 @@ You can test them out at [https://wrongsecrets.herokuapp.com/](https://wrongsecr
5859

5960
## Basic K8s exercise
6061

61-
_Can be used for challenges 1-6, 8, 12-18_
62+
_Can be used for challenges 1-6, 8, 12-19_
6263

6364
### Minikube based
6465

@@ -105,7 +106,7 @@ now you can use the provided IP address and port to further play with the K8s va
105106

106107
## Vault exercises with minikube
107108

108-
_Can be used for challenges 1-8, 12-18_
109+
_Can be used for challenges 1-8, 12-19_
109110
Make sure you have the following installed:
110111

111112
- minikube with docker (or comment out line 8 and work at your own k8s setup),
@@ -122,7 +123,7 @@ When you stopped the `k8s-vault-minikube-start.sh` script and want to resume the
122123

123124
## Cloud Challenges
124125

125-
_Can be used for challenges 1-18_
126+
_Can be used for challenges 1-19_
126127

127128
**READ THIS**: Given that the exercises below contain IAM privilege escalation exercises,
128129
never run this on an account which is related to your production environment or can influence your account-over-arching resources.
@@ -180,7 +181,6 @@ Top contributors:
180181
- [Finn @f3rn0s](https://github.com/f3rn0s)
181182
- [Alex Bender @alex-bender](https://github.com/alex-bender)
182183

183-
184184
Testers:
185185

186186
- [Dave van Stein @davevs](https://github.com/davevs)

aws/k8s/secret-challenge-vault-deployment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ spec:
3737
volumeAttributes:
3838
secretProviderClass: "wrongsecrets-aws-secretsmanager"
3939
containers:
40-
- image: jeroenwillemsen/wrongsecrets:1.4.3-k8s-vault
40+
- image: jeroenwillemsen/wrongsecrets:1.4.4-k8s-vault
4141
imagePullPolicy: IfNotPresent
4242
ports:
4343
- containerPort: 8080

azure/k8s/secret-challenge-vault-deployment.yml.tpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ spec:
3535
volumeAttributes:
3636
secretProviderClass: "azure-wrongsecrets-vault"
3737
containers:
38-
- image: jeroenwillemsen/wrongsecrets:1.4.3-k8s-vault
38+
- image: jeroenwillemsen/wrongsecrets:1.4.4-k8s-vault
3939
imagePullPolicy: IfNotPresent
4040
ports:
4141
- containerPort: 8080

gcp/k8s/secret-challenge-vault-deployment.yml.tpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ spec:
3737
volumeAttributes:
3838
secretProviderClass: "wrongsecrets-gcp-secretsmanager"
3939
containers:
40-
- image: jeroenwillemsen/wrongsecrets:1.4.3-k8s-vault
40+
- image: jeroenwillemsen/wrongsecrets:1.4.4-k8s-vault
4141
imagePullPolicy: IfNotPresent
4242
ports:
4343
- containerPort: 8080

k8s/secret-challenge-deployment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ spec:
2828
runAsGroup: 2000
2929
fsGroup: 2000
3030
containers:
31-
- image: jeroenwillemsen/wrongsecrets:1.4.3-no-vault
31+
- image: jeroenwillemsen/wrongsecrets:1.4.4-no-vault
3232
imagePullPolicy: IfNotPresent
3333
ports:
3434
- containerPort: 8080

k8s/secret-challenge-vault-deployment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ spec:
3030
runAsNonRoot: true
3131
serviceAccountName: vault
3232
containers:
33-
- image: jeroenwillemsen/wrongsecrets:1.4.3-k8s-vault
33+
- image: jeroenwillemsen/wrongsecrets:1.4.4-k8s-vault
3434
imagePullPolicy: IfNotPresent
3535
ports:
3636
- containerPort: 8080

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</parent>
1010
<groupId>org.owasp</groupId>
1111
<artifactId>wrongsecrets</artifactId>
12-
<version>challenge19test11-SNAPSHOT</version>
12+
<version>1.4.4-SNAPSHOT</version>
1313
<name>OWASP WrongSecrets</name>
1414
<description>Examples with how to not use secrets</description>
1515
<url>https://owasp.org/www-project-wrongsecrets/</url>

0 commit comments

Comments
 (0)