Skip to main content
Bsides Tlv Web 1
  1. Ctfs/

Bsides Tlv Web 1

1 min· ·
sigchill
Author
sigchill
Welcome to my study blog. Here I document my CTF writeups and security research.
Table of Contents

BsidesTLV 2025 web ctf
#

category : web
#

difficulty : easy
#

overview :

we recieve a web app , avengers themed, i cant seem to find anything interesting but when inspecting the traffic i notice 4 /graphql POST requests which seem interesting to investigate

img1.png

we actually manage to run an introspection request, good ..

{"query":"{ __schema { types { name fields { name } } } }"}

we get an interesting output , especialy classifiedReports, lets further investigate..


{"query":"{ classifiedReports { title content } }"}

and… we get the flag

BSidesTLV2025{*******}

Related