Hi,

I am currently trying to get past vortex level 00.. but I have a problem. http://www.pulltheplug.org/wargames/vortex/level00.html

Here is my code (in python):

Code:
import socket

HOST = 'vortex.labs.pulltheplug.org'
PORT = 5842

s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((HOST, PORT))
b1 = s.recv(2)
b2 = s.recv(2)
b3 = s.recv(2)
b4 = s.recv(2)

b = b1+b2+b3+b4

s.send(b)

while 1:
	ans = s.recv(1024)
	print repr(ans)
	if not ans: break
s.close()
Can anybody help me, please?

-jk