diff --git a/.allstar/binary_artifacts.yaml b/.allstar/binary_artifacts.yaml index 56a21e753..32dccbc15 100644 --- a/.allstar/binary_artifacts.yaml +++ b/.allstar/binary_artifacts.yaml @@ -1,4 +1,4 @@ # Exemption reason: The binaries in this repository are (parts of) it security challenges of the Google CTF (g.co/ctf). # Exemption timeframe: permanent optConfig: - optOut: true + optOut: false diff --git a/2017/quals/2017-misc-mindreader/app/requirements.txt b/2017/quals/2017-misc-mindreader/app/requirements.txt index 62c81c479..d6f61fd6b 100644 --- a/2017/quals/2017-misc-mindreader/app/requirements.txt +++ b/2017/quals/2017-misc-mindreader/app/requirements.txt @@ -1,3 +1,3 @@ -gunicorn==19.7.1 +gunicorn==22.0.0 Flask==0.12.1 gevent diff --git a/2022/quals/crypto-electric-mayhem-pqc/challenge/web.dockerfile b/2022/quals/crypto-electric-mayhem-pqc/challenge/web.dockerfile index 67848db46..e443e069d 100644 --- a/2022/quals/crypto-electric-mayhem-pqc/challenge/web.dockerfile +++ b/2022/quals/crypto-electric-mayhem-pqc/challenge/web.dockerfile @@ -11,7 +11,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -FROM golang:1.18 as build +FROM golang:1.23rc2 as build WORKDIR /build diff --git a/2023/pwn-write-flag-where/solution/solve.py b/2023/pwn-write-flag-where/solution/solve.py index 24b345b1e..59234cfff 100644 --- a/2023/pwn-write-flag-where/solution/solve.py +++ b/2023/pwn-write-flag-where/solution/solve.py @@ -28,5 +28,5 @@ def remote_write(r,address,length): binary_base = int(output.split(b"\n")[8].split(b'-')[0],16) print("Binary base",hex(binary_base)) -remote_write(r,binary_base + 0x2198, 126) +remote_write(r,binary_base + 0x21E0, 126) print(r.recv())