forked from OJ/bsides-2017-ctf-docker
-
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.
Add gohackme, disable logging on containers
- Loading branch information
Showing
6 changed files
with
42 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
web_epicl33twarezs: | ||
image: bsidescbrctf/2017-web-epicl33twarezs:1 | ||
ports: | ||
- "7443:8443" | ||
version: '2' | ||
services: | ||
web_epicl33twarezs: | ||
image: bsidescbrctf/2017-web-epicl33twarezs:1 | ||
logging: | ||
driver: "none" | ||
ports: | ||
- "7443:8443" |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
* This web-based challenge was worth `450` points. | ||
* Run `docker-compose up` and then browse to [https://web.shell.dance:8443/](https://web.shell.dance:8443/). | ||
|
||
## NOTE! | ||
|
||
Building a challenge like this is hard, and there are issues that we haven't been able to control. It won't take you long to realise that you have to do something with XSS in this challenge. Unfortuanately, `casperjs` isn't honouring the `script-src` CSP header, which changes how this challenge works. | ||
|
||
If you're hosting scripts on your own server/machine/etc then you're bypassing an important part of this challenge (ie. you're doing it wrong and losing out on one of the fun parts). Please don't take this approach, look for another way! |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
version: '2' | ||
services: | ||
web_gohackme: | ||
image: bsidescbrctf/2017-web-gohackme:1 | ||
logging: | ||
driver: "none" | ||
ports: | ||
- "8443:8443" |
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,4 +1,8 @@ | ||
web_jonshow: | ||
image: bsidescbrctf/2017-web-jonsnow:1 | ||
ports: | ||
- "6443:8443" | ||
version: '2' | ||
services: | ||
web_jonshow: | ||
image: bsidescbrctf/2017-web-jonsnow:1 | ||
logging: | ||
driver: "none" | ||
ports: | ||
- "6443:8443" |
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,4 +1,8 @@ | ||
web_nextlevelfilters: | ||
image: bsidescbrctf/2017-web-nextlevelfilters:1 | ||
ports: | ||
- "5443:8443" | ||
version: '2' | ||
services: | ||
web_nextlevelfilters: | ||
image: bsidescbrctf/2017-web-nextlevelfilters:1 | ||
logging: | ||
driver: "none" | ||
ports: | ||
- "5443:8443" |