Attachment 'tcp_send.py'

Download

   1 #!/usr/bin/env python
   2 
   3 import socket
   4 
   5 sock=socket.socket()		# default socket
   6 
   7 target=raw_input("target address:")
   8 message=raw_input("Message: ")
   9 
  10 sock.connect((target,40000))	# connect to someone listen()ing
  11 sock.send(message)
  12 sock.close()

Attached Files

To refer to attachments on a page, use attachment:filename, as shown below in the list of files. Do NOT use the URL of the [get] link, since this is subject to change and can break easily.

You are not allowed to attach a file to this page.