graphql leak

0x01

  1. find all type
    1
    2
    3
    4
    5
    6
    7
    {
    __schema {
    types {
    name
    }
    }
    }
  2. find all field of known type
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    {
    __type (name: "Query") {
    name
    fields {
    name
    type {
    name
    kind
    ofType {
    name
    kind
    }
    }
    }
    }
    }
Author

lyq1996

Posted on

2021-10-24

Updated on

2023-01-05

Licensed under

Comments