Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@jcwarp
jcwarp / reply-to-empty-udp.py
Last active March 8, 2024 03:11 — forked from Manouchehri/reply-to-empty-udp.py
Simple Python UDP echo server
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Author: David Manouchehri <manouchehri@protonmail.com>
# This script will always echo back data on the UDP port of your choice.
# Useful if you want nmap to report a UDP port as "open" instead of "open|filtered" on a standard scan.
# Works with both Python 2 & 3.
import socket