Hintru ENES ← Todos los labs

Breach - WebVerse (GraphQL)

EN easy CTF challenge GraphQLIntrospectionBroken Access ControlInformation DisclosureAPI Security

The Breach challenge on WebVerse Labs exposes a GraphQL API backing a notes application. The notes are visible in the UI, but a GraphQL schema often has surfaces the front-end never touches. Map what's really there, and find a way to reach the flag.

0/4
resueltos
👁 Paso 1 Paso 2 Paso 3 Paso 4
web

Paso 3 · Attempt to Query the Flag Field Without Arguments

Objetivo: Query the `flag` field requesting the `value` sub-field without any arguments and observe the server's response.

Contexto: Introspection revealed a `flag` field with a `debug` argument, and a `Flag` type with `id`, `value`, and `accessLevel` fields. Before exploiting the debug argument, first observe what happens when you query the flag field normally.

Pistas progresivas

Revela solo las que necesites. Claude lleva la cuenta de cuántas usaste para calibrar la retroalimentación.

Pista 1 — empujón direccional

Try building a simple GraphQL query that requests the `value` field from `flag`, just like you would query `notes`. Send it to the same endpoint.

Pista 2 — técnica / clase de vuln

Construct a basic GraphQL query for the `flag` object and request its `value` field. Observe whether access is denied or an error is returned.

Pista 3 — casi la solución

Send this query:
```json
{"query":"{ flag { value } }"}
```
Note the error response returned — this tells you the plain query is blocked.

Tu intento