Attachment 'tcp_send_file.py'

Download

   1 #!/usr/bin/env python
   2 
   3 import socket
   4 import time
   5 
   6 sock=socket.socket()		# default socket
   7 
   8 target=raw_input("target address:")
   9 fsp=raw_input("File: ")
  10 
  11 fin=file(fsp,"r")
  12 data=fin.read()
  13 
  14 sock.connect((target,40000))	# connect to someone listen()ing
  15 sfile=sock.makefile()
  16 sfile.write("{}\n".format(fsp))
  17 sfile.write("{}\n".format(len(data)))
  18 sfile.write(data)
  19 sfile.close()
  20 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.