본문으로 바로가기

[weCTF2020] : Build Up

category CTF/CTFs 2020. 12. 26. 04:18
728x90
반응형

 

WeCTF Build up

ctftime.org의 캘린더를 보다 weCTF라는 일정이 눈에 띄어서 들어가봤더니 Jeopardy 처럼 나오는 형식은 아니고github 링크로 연결되었습니다. README.md 를 읽다보니 docker-compose로 직접 빌드해서 쓰면 된다 나와있었기 이용해봤습니다.

wectf repository : github.com/wectf/2020p

 

wectf/2020p

WeCTF 2020+ Source Code & Organizer's Writeup. Contribute to wectf/2020p development by creating an account on GitHub.

github.com

 

위 링크에 들어가 Run Challenges Locally 항목을 보면 다음과 같이 나왔습니다.

docker-compose를 통해 wectf를 즐길 수 있을 것 같습니다. docker-compose를 설치합시다.

$ sudo apt-get install docker-compose

단순히 설치하고 "docker-compose up"으로 빌드 했을 때 다음과 같은 에러가 났습니다..

github.com/docker/compose/issues/4181

 

ERROR: Couldn't connect to Docker daemon at http+docker://localunixsocket - is it running? · Issue #4181 · docker/compose

I know that there is another issue of the same type but the other issue is closed and I tried all the solutions proposed but with no effect. still not working: matteo@ubuntuDockerMB:~/wordpress-doc...

github.com

해결방법은 docker daemon을 다음과 같이 시작해주면 됬습니다.

$ sudo service docker start
$ sudo docker-compose up

이 후 시간이 좀 지나고 완료됩니다.

728x90
반응형

'CTF > CTFs' 카테고리의 다른 글

[N00bCTF][MISC]  (0) 2021.01.03
[ctfLearn][Review] : Inj3ction Time  (0) 2020.12.27
[Affinity CTF 2020] : Catch Me if You Can  (0) 2020.11.22
[NACTF2020][Web] : Calculator & Cookie Recipe  (0) 2020.11.09
Google Beginner's Quest : Space-Time Coordinates  (0) 2020.09.30