Skip to content

Instantly share code, notes, and snippets.

View Kajvdh's full-sized avatar

Kaj Van der Hallen Kajvdh

  • SingularITi
  • Belgium
View GitHub Profile
@Kajvdh
Kajvdh / port_test.py
Created July 5, 2019 06:03
Python script to test open outgoing ports from local network
#!/usr/bin/env python
"""Port test
Python script to test open outgoing ports from local network
"""
import socket
for port in range(1,65000):
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)