Skip to content

Instantly share code, notes, and snippets.

View Melotover's full-sized avatar

Asem Eleraky Melotover

View GitHub Profile
#!/bin/bash
request=`curl https://finger-warmup.chals.damctf.xyz/zatjh2pgii2wc2yoovpet`
result=`echo $request | cut -d '"' -f 2`
for i in `seq 0 1000000`
do
new_request=`curl https://finger-warmup.chals.damctf.xyz/$result`
if [[ $new_request == *"patient enough I will give you the flag"* ]]; then
result=`echo $new_request | cut -d '"' -f 2`