Tags: forensics 

Rating:

# Chicken Crossing

```
Keith is watching chickens cross a road in his grandfather’s farm. He once heard from his grandfather that there was something significant about this behavior, but he can’t figure out why. Help Keith discover what the chickens are doing from this seemingly simple behavior.
```

(File(s): attachments/hsctf-chicken_crossing.jpg)

We're given a jpg file. Let's run `strings` on it and `grep` for the flag to see if it's in there somewhere.

```
$ strings hsctf-chicken_crossing.jpg | grep "hsctf"
hsctf{2_get_2_the_other_side}
```

Original writeup (https://github.com/shawnduong/ctf-writeups/blob/master/2019-HSCTF6/Forensics/chicken-crossing.md).