This commit is contained in:
2025-03-10 02:52:45 +01:00
parent e9e0fb20c2
commit 225f8da388
15 changed files with 96 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
# run via docker compose :)
FROM ubuntu:22.04
RUN apt-get update
RUN apt-get -y install socat
RUN useradd -d /home/ctf/ -m -p ctf -s /bin/bash ctf
RUN echo "ctf:ctf" | chpasswd
WORKDIR /home/ctf
COPY rev1 .
COPY flag.txt .
USER ctf
CMD socat -ddd TCP4-LISTEN:1024,fork,reuseaddr exec:./rev1,pty,echo=0,raw,iexten=0

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1 @@
CSCG{testflag}

BIN
cscg25/rev/intro1/rev1 Executable file

Binary file not shown.

View File

@@ -0,0 +1,18 @@
# run via docker compose :)
FROM ubuntu:22.04
RUN apt-get update
RUN apt-get -y install socat
RUN useradd -d /home/ctf/ -m -p ctf -s /bin/bash ctf
RUN echo "ctf:ctf" | chpasswd
WORKDIR /home/ctf
COPY rev2 .
COPY flag.txt .
USER ctf
CMD socat -ddd TCP4-LISTEN:1024,fork,reuseaddr exec:./rev2,pty,echo=0,raw,iexten=0

View File

@@ -0,0 +1 @@
CSCG{testflag}

View File

@@ -0,0 +1,6 @@
password = b"\x02\xea\x02\xe8\xfc\xfd\xbd\xfd\xf2\xec\xe8\xfd\xfb\xea\xf7\xfc\xef\xb9\xfb\xf6\xea\xfd\xf2\xf8\xf7\x00"
input = bytes((byte + 0x77) % 256 for byte in password)
with open("password.bin", "wb") as f:
f.write(input)

View File

@@ -0,0 +1 @@
yay_st4tic_transf0rmationw

BIN
cscg25/rev/intro2/rev2 Executable file

Binary file not shown.

BIN
cscg25/rev/intro2/rev2.bndb Normal file

Binary file not shown.

View File

@@ -0,0 +1 @@
CSCG{testflag}

BIN
cscg25/rev/intro3/rev3 Executable file

Binary file not shown.