detailed-cod-tracker/curl_userInfo.ps1

7 lines
350 B
PowerShell
Raw Permalink Normal View History

2023-12-25 04:49:37 -05:00
$COOKIE_VALUE = ""
$URL = "https://profile.callofduty.com/cod/userInfo/$COOKIE_VALUE"
$USER_AGENT = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36"
$OUTPUT_FILE = "userInfo.json"
2023-12-25 05:19:22 -05:00
curl -v $URL -H "Cookie: ACT_SSO_COOKIE=$COOKIE_VALUE" -H "User-Agent: $USER_AGENT" -o $OUTPUT_FILE