Tags: 2020 utctf utc forenc strings forenciss 

Rating:

`The file extension was .jpeg but exiftool as well as the file command said that it's UTF encoded text file.
So I ran strings command on it and then grepped the 'utflag' and got the flag`

```
strings secret.jpeg | grep utflag
```
```
It returns the flag as utflag{fil3_ext3nsi0ns_4r3nt_r34l}
```