POST
March 22, 2024

First we did try to copy as curl in the web dev tool

Then this is the result for that

option 1
After we remove some of the headers we can see this
curl 'http://83.136.254.223:39361/search.php' -H 'Cookie: PHPSESSID=gpsf0oduj0dfflqevvrnj55b3f' -H 'Content-Type: application/json' --data-raw '{"search":"flag"}'

option 2
curl -X POST -d '{"search":"london"}' -H 'Cookie: PHPSESSID=30ij4ep815vbqnmtaqnr3jncuv' -H 'Content-Type: application/json' http://83.136.252.226:56408/search.php
curl -X POST -d '{"search":"flag"}' -H 'Cookie: PHPSESSID=30ij4ep815vbqnmtaqnr3jncuv' -H 'Content-Type: application/json' http://83.136.252.226:56408/search.php

option 3
curl -X POST -d '{"search":"flag"}' -b 'PHPSESSID=30ij4ep815vbqnmtaqnr3jncuv' -H 'Content-Type: application/json' http://83.136.252.226:56408/search.php


Last updated