Skip to content

Instantly share code, notes, and snippets.

View thobiasn's full-sized avatar
🎯
Focusing

Thobias thobiasn

🎯
Focusing
  • JUSTDRIVE
  • Denmark
View GitHub Profile
@leonjza
leonjza / netcat.py
Last active July 30, 2023 16:28
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)