Networking scripts that gives a good introduction to network programming in python. Open a pull request to contribute other similar scripts :)
in development: Add command line input for scripts
-
Mailing Client
Simple mailing client in python to send emails over smtp server with file/photos attachments. -
TCP Chat
A very basic local tcp chat. Useserver.py
to setup monitoring server for the chat, andclient.py
for different users to connect to the chat.Server thread
> server.py Server is listining... Connected with ('127.0.0.1', 64303) Nickname of client is vader! Connected with ('127.0.0.1', 64335) Nickname of client is johndoe!
New Client thread(s)
> client.py Choose a nickname: johndoe johndoe joined the chat! Connected to the server! vader: hey john
Already Client thread(s)
> client.py Choose a nickname: vader vader joined the chat! Connected to the server! . . johndoe joined the chat! hey john vader: hey john
-
DDOS
A very inefficient ddos script (for educational purposes only!) -
Port Scanner
A general purpose port scanner (use authorized ip for port scanning, port-scanning is considered ill-legal)