https://github.com/0xrar/robots-ritesec-ctf-2021
A writeup for the challenge Robots from RITESEC CTF 2021
https://github.com/0xrar/robots-ritesec-ctf-2021
ctf cybersecurity web writeup
Last synced: 6 months ago
JSON representation
A writeup for the challenge Robots from RITESEC CTF 2021
- Host: GitHub
- URL: https://github.com/0xrar/robots-ritesec-ctf-2021
- Owner: 0xRar
- Created: 2021-04-10T16:00:13.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-04-12T16:27:04.000Z (over 5 years ago)
- Last Synced: 2025-02-07T18:16:24.808Z (over 1 year ago)
- Topics: ctf, cybersecurity, web, writeup
- Homepage:
- Size: 11.7 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Writeup for **Robots** RITESEC CTF 2021

- Challenge Name: **`Robots`**
- Category: **`Web`**
- Points: **`100pts`**
## First Look:
This one was really easy but you need to look in the right place and decode every base64 you see,
thats what we get when we enter the website:

but there is one thing, we need to look at the source code:

nothing much here but we see a plain text `flag.txt` its a file but is it the flag?
we get this base64 encoded text : `VW05aWIzUnpJR0Z5WlNCMFlXdHBibWNnYjNabGNpQXVMaTQ9 || Robots are taking over ...`
## Solution:
but thats nothing its just a rabbit hole, but also the name of the challenge is a big hint, lets check `robots.txt`, there is alot of things here lets filter our search and use `CTRL + F` to search for the word: `flag`:

we got something thats good but when we try to access `/flag/UlN7UjBib3RzX2FyM19iNGR9` we get 404
and it looks like `UlN7UjBib3RzX2FyM19iNGR9` is a base64 lets decode it, and yes, we got our flag.
Flag: **`RS{R0bots_ar3_b4d}`**