Tags: sha2017ctf 

Rating:

```
root@64bits:/home/page2me# curl http://vod.stillhackinganyway.nl/

<html lang="en">
<head>
<meta charset="utf-8">
<title>The name is Kanockers. Vod Kanockers</title>
</head>
<body>


</body>
</html>
```
```
# cat VodKanockers.sh
#!/bin/bash
#
for port in 88 156 983 1287 8743 5622 9123
do
text=`nc vod.stillhackinganyway.nl $port`
done
echo $text
```
```
# ./VodKanockers.sh
vod.stillhackinganyway.nl [34.249.81.124] 88 (kerberos) : Connection refused
vod.stillhackinganyway.nl [34.249.81.124] 156 (?) : Connection refused
vod.stillhackinganyway.nl [34.249.81.124] 983 (?) : Connection refused
vod.stillhackinganyway.nl [34.249.81.124] 1287 (?) : Connection refused
vod.stillhackinganyway.nl [34.249.81.124] 8743 (?) : Connection refused
vod.stillhackinganyway.nl [34.249.81.124] 5622 (?) : Connection refused
flag{6283a3856ce4766d88c475668837184b}
```

Original writeup (http://imgur.com/a/w7QIy).