Am confused about the change.diff and dockerfile.
First the dockerfile?
WORKDIR /home/pwn
USER root
COPY --chown=pwn:pwn ./deploy/flag_* ./
RUN mv ./flag_equilibrium ./chroot/srv/flag_equilibrium
RUN chown 10001:10001 flag_fracture flag_fracture_reader
RUN chmod 400 flag_fracture
RUN chmod 4111 flag_fracture_reader
That shows me that it is coping equilibrium files instead.
Then for change.diff
Its a note included but the problem is its structure resembles qwv::equilibrium when started so are these files mixed.
Do they even matter to the challenge for antagonism.
As in the Dockerfile, flag_antagonism is located in /home/pwn, whereas flag_equilibrium resides in the same directory as the challenge binaries. This discrepancy exists because the two challenges share the same Dockerfile configurations despite having different characteristics. Hence, it is not a configuration error, and any flag files other than flag_antagonism can be ignored. In my opinion, the change.diff file was provided to clarify these points.