[Pragyan CTF'2025][Web] Finding_X
Introduction The website presents a web interface with several tabs: Home, About Us, Features, and Admin Panel. For the challenge, we have access to an XML file called data.xml containing the following information: 1 2 3 4 5 6 7 8 9 10 11 12 <company> <department id="1" name="Confidential"> <employee> <name>Confidential</name> <id>EMP007</id> <details> <position>Confidential</position> <selfDestructCode>p_ctf{fake_flag}</selfDestructCode> </details> </employee> </department> </company> Access to the different tabs is allowed but does not contain useful information or input fields....