Clear it in 3 steps
-
Start the environment
-
Investigate the target
-
Submit the flag
/app/users.json contains information of 100 users in JSON format. Extract users that meet these conditions: - age between 25 and 30 (inclusive) - country is "Japan" - is_active is true Extract all email addresses of matching users, sort them alphabetically, and wrap the first email in KINOCO{...} to make the flag. Hint: Use jq command
jq is a powerful JSON processor
Use select() for filtering: jq '.[] | select(.age >= 25)'
Combine conditions with and: select(.age >= 25 and .age <= 30 and .country == "Japan" and .is_active == true)