Rambles of Ev
  • Home
  • About
  • Search

Python

A collection of 2 posts
Linux

How to kick everyone around you off wifi with Python

Description: This script will find the most powerful wifi interface and turn on monitor mode. If a monitor mode interface is already up it will use the first one it finds instead. It will then start sequentially hopping channels 1 per second from channel 1 to 11 identifying all access
05 Dec 2015 17 min read
Programming

Python - Socket using a file

Server Program: #!/usr/bin/python # Echo server program import socket,os s = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) try: os.remove("/tmp/py_socket") except OSError: pass s.bind("/tmp/py_socket") s.listen(1) conn, addr = s.accept() while 1: sock_data = conn.
04 Sep 2013
Page 1 of 1
Rambles of Ev © 2026
Powered by Ghost