Rating:

## [See original writeup on site](https://barelycompetent.dev/post/ctfs/2021-04-11-ritsecctf/#sessions)

### Sessions
> Find the flag.
>
> http://34.69.61.54:4777
>
> Author: f1rehaz4rd

Navigate to the site, and be presented with a login prompt. Reading the source code of the page, it states the login information is **iroh:iroh**.

Enter **iroh** for username and password and login.

Once logged in, reading around the pages yields nothing. As the name of the challenge is _sessions_, check the cookies. We find one _sessiontoken_, whose value is `UlN7MG5seV9PbmVfczNzc2lvbl90b2szbn0=`.

```bash
echo UlN7MG5seV9PbmVfczNzc2lvbl90b2szbn0= | base64 -d
RS{0nly_One_s3ssion_tok3n}
```

Flag is `RS{0nly_One_s3ssion_tok3n}`.

Original writeup (https://barelycompetent.dev/post/ctfs/2021-04-11-ritsecctf/#sessions).