Skip to content

Latest commit

 

History

History
 
 

flag0

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

BugDB v1 - FLAG0

0x00 Overview

Very direct and easy CTF. The purpose is more like taking a tour of Graphql.

0x01 FLAG

The left side is the QUERY and the RIGHT side is results.

There is also a very clear structure of data at very right side for reference.

So just make a query to loop through all the details of the data set.

query{
  user {
    edges {
      node {
        id
        username
        bugs {
          pageInfo {
            startCursor
            endCursor
          }
          edges {
            cursor
            node {
              id
              reporterId
              text
              private
              reporter {
                id
              }
            }
          }
        }
      }
    }
  }
}

And here comes the flag.