Writeups from challenges and CTFs i take part in.
What you have to do:
Inject the following JavaScript command: alert(document.domain);
Hint: the ‘javascript’ scheme.
This page turns user input into a URL. We’ll follow the hint and type a JavaScript URI like this:
javascript:alert(document.domain);:

An URL will now be displayed:

Clicking on it solves the challenge.