Skip to content

Commit

Permalink
Add gohackme, disable logging on containers
Browse files Browse the repository at this point in the history
  • Loading branch information
OJ committed Mar 20, 2017
1 parent 857508d commit c100bdf
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 12 deletions.
2 changes: 2 additions & 0 deletions web-derpchat/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ version: '2'
services:
web_derpchat:
image: bsidescbrctf/2017-web-derpchat:1
logging:
driver: "none"
ports:
- "4443:4443"
extra_hosts:
Expand Down
12 changes: 8 additions & 4 deletions web-epicl33twarezs/docker-compose.yml
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"
8 changes: 8 additions & 0 deletions web-gohackme/README.md
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!
8 changes: 8 additions & 0 deletions web-gohackme/docker-compose.yml
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"
12 changes: 8 additions & 4 deletions web-jonsnow/docker-compose.yml
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"
12 changes: 8 additions & 4 deletions web-nextlevelfilters/docker-compose.yml
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"

0 comments on commit c100bdf

Please sign in to comment.