image.png

This one is fun.

image.png

We can go to:

<http://sem2ctf.icsi.cyber:9000/api/v1/status>

image.png

Copy the token above to a notepad or something. (It’s a JWT Token. The format is distinctive!)

Since we have discovered an API endpoint, it --totally-- makes sense to use an API wordlist to fuzz for other endpoints that we don’t know about yet.

Fuzz for other API endpoints using ffuf

ffuf -u <http://sem2ctf.icsi.cyber:9000/api/v1/FUZZ> -w words.txt

image.png

Now that we’ve discovered http://sem2ctf.icsi.cuyber:9000/api/v1/users We’ll want to intercept a request in Burp Suite

**<http://sem2ctf.icsi.cyber:9000/api/v1/users**>

image.png

Utilizing Authorization: Bearer <TOKEN>

Insert this standard Authorization: Bearer <token> header with the TOKEN copied from the api/v1/users endpoint