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 September 19, 2024 23:56
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)