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
# A basic template for solving netcat challenges | |
# Author: aaron@lintile.com | |
import socket | |
import string | |
class Netcat: | |
def __init__(self, ip, port): | |
self.data_buffer = '' | |
self.socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) |