This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# This script is public domain | |
import socket | |
import re | |
import sys | |
if len(sys.argv) < 3: | |
print("Usage: {} <username> <password>".format(sys.argv[0])) | |
sys.exit(1) |