Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .allstar/binary_artifacts.yaml
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion 2017/quals/2017-misc-mindreader/app/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
gunicorn==19.7.1
gunicorn==22.0.0
Flask==0.12.1
gevent
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion 2023/pwn-write-flag-where/solution/solve.py
Original file line number Diff line number Diff line change
Expand Up @@ -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())