Tags: netcat 

Rating:

### Internet Cattos
> Challenge statement:
>
> The Internet is full of wonderful kittens and cattos. You can even find one at jh2i.com on port 50003!

Solution:
1. This challenge is not to hard i think, just use net cat to connect to jh2i.com on port 50003
2. After that u will got a message "Oh, we already sent the flag! Did you see it?"
3. To find the flag i use this command
```
nc jh2i.com 50003 > InternetCattos
```
4. After that you will need to open the InternetCattos using nano or any editor to see the flag, because the flag is like this
![Internet Cattos result](https://github.com/m0nkeyt3ch/CTFs-Writeups/blob/master/HacktivityCon-CTF-2020/Image/InternetCattos.png?raw=true)

5. we need to rearrange the flag, after we rearranged it we found the flag is 'flag{this_netcat_says_meow}'

FLAG: **flag{this_netcat_says_meow}**

Original writeup (https://github.com/m0nkeyt3ch/CTFs-Writeups/blob/master/HacktivityCon-CTF-2020/warmups-part.md#internet-cattos).