Tags: misc
Rating:
# The Mueller Report
We're given a 138.8 MB PDF file. However, it doesn't seem to contain any pages.
Perhaps there's something contained within the actual file itself, not the pages. Let's try running `strings` and `grep` to see if anything in there resembles the flag.
```
$ strings full-mueller-report.pdf | grep "actf{.*}"
```
`strings` extracts all strings out of there, filtering out binary nonsense and sequences without any sort of corresponding or printable characters. `grep` performs a regular expression operation. Our expression wants anythng that starts with `actf{`, can have anything afterwards, so as long as it ends with a `}`. The pipe redirects the output from `strings` directly into `grep`.