Skip to content

Latest commit

 

History

History

POST-UP

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

POST-UP

  • Send POST request to URL

Solution

  • Solutions are small so they they don't need a whole directory at this point

Python3

import requests

r = requests.post("URL")
print(f"{r.text}")

Bash

python3 -c 'import requests; r = requests.post("URL"); print(r.text)'
curl -X POST URL

Challenge Message

Up and at’m! Time to tackle your first mission of the day! Send a request to HQ to receive mission details!

www.jerseyctf.info

Challenge Hints

Send the POST