Skip to content

Instantly share code, notes, and snippets.

View firewut's full-sized avatar
🎯
Focusing

Andrey Chibisov firewut

🎯
Focusing
View GitHub Profile
@firewut
firewut / netcat.py
Created September 3, 2018 13:42 — forked from leonjza/netcat.py
Python Netcat
import socket
class Netcat:
""" Python 'netcat like' module """
def __init__(self, ip, port):
self.buff = ""
self.socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)