# DRAFT : NOT FINISHED # phpme by [5225225](https://www.5snb.club) and haskal web / 469 pts / 64 solves > "This is what normal PHP CTF challenges look like, right?" - A web dev who barely knows PHP Going to the URL given shows us this source code ```php \n"; echo " let url = '" . htmlspecialchars($json["url"]) . "';\n"; echo " navigator.sendBeacon(url, '" . htmlspecialchars($flag) . "');\n"; echo "\n"; } else { echo "nope :)"; } } else { echo "not json bro"; } } else { echo "ur not admin!!!"; } } else { show_source(__FILE__); } ?> ``` The challenge is to get the admin bot to visit a URL and make a POST request without user interaction, and then receive the flag back as a POST to the url given. The easiest way to do this is with a form. One issue is that form submission is submitting key/value pairs, but we need to submit valid JSON. [System Overlord - Posting JSON with an HTML Form](https://systemoverlord.com/2016/08/24/posting-json-with-an-html-form.html) was useful here. The final solution was ```html
``` with `