Hi
How do I solve this. At this point I have given up, but just want to learn
Thanks for applying to Ramp. Solve this CTF[1] challenge and add the result to your application.
We recommend opening this file with a Markdown viewer. (https://www.google.com/search?q=markdown+viewer)
Pattern of the DOM tree for each valid character of the URL
<section id="11*">
<!-- Zero or more DOM nodes -->
<main id="*22">
<!-- Zero or more DOM nodes -->
<article id="*33*">
<!-- Zero or more DOM nodes -->
<p class="flag" value="VALID_CHARACTER"></p>
<!-- Zero or more DOM nodes -->
</article>
</main>
<!-- Zero or more DOM nodes -->
</section>Example of a valid pattern
<!-- Tag is `section` and id starts with 11 -->
<section id="11gxgeksbp9d">
<!-- Tag is `main` and id ends with 22 -->
<main id="6xb5nzfqqw22">
<!-- Tag is `article` and id ends with 33 -->
<article id="ndd6l335">
<!-- Tag is `p` and contains class `flag` -->
<!-- `h` is a valid character from the URL -->
<p class="flag" value="h"></p>
</article>
</main>
</section>(To validate this step, you should be able to open the URL and get an English word. This means you have captured the flag! 🥳)
Bonus: Add as a comment the script you used to to get the URL in step 2
Paste the flag you captured in step 2 and the link to your CodeSandbox in the job application with the following format:
<FLAG> - <LINK>
We're aware answers here might eventually be leaked and we'll probably have to refresh this every couple months or so, but please keep in mind it'll be very easy to tell once that happens and will only result in slowing down our ability to process applications - so please keep the result to yourself.
[1]: https://en.wikipedia.org/wiki/Capture_the_flag_(cybersecurity)