<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2900.2180" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>Ok, ora la maggior parte dei miei problemi sono 
finiti, richiamo la shell su una mia porta a scelta, riesco a fargli eseguire i 
comandi lunico problema è che una volta letto il contenuto del file non riescoa 
inviarlo, ovvero lo invia tranquillamente solo che ne invia solo il contenuto e 
sul&nbsp;server mi compare come un messaggio invece che come file e non riesco a 
ricostruirlo</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2><FONT size=3>import socket<BR>from socket import 
*</FONT><BR><FONT size=3>s = 
socket(AF_INET,SOCK_STREAM)<BR>s.connect(('127.0.0.1',7777))<BR>while 
1:<BR>&nbsp;&nbsp;&nbsp; msg = raw_input('Enter here the command ---&gt; 
')<BR>&nbsp;&nbsp;&nbsp; if 
msg=='file':<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; import 
os<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; f = raw_input('Enter here the 
path to file ---&gt; ')<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; gf = 
open(f,'r')<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; rf = 
gf.read()<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; sf = 
s.send(rf)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
exit<BR>&nbsp;&nbsp;&nbsp; if 
msg=='exit':<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
s.send('exit')<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print 'uscita in 
corso..'<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; import 
os<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
os._exit(0)<BR>&nbsp;&nbsp;&nbsp; if not 
msg:<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; break<BR>&nbsp;&nbsp;&nbsp; 
s.send(msg)<BR>exit<BR></FONT></FONT></DIV>
<DIV><FONT face=Arial size=2><FONT size=3></FONT></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2><FONT size=3><FONT size=2>come faccio a inviare il 
tutto a blocchi e fare in modo che il server ricomponga il tutto correttamente 
invece che interpretare il tutto come un comando ?</FONT></FONT></FONT></DIV>
<DIV><FONT face=Arial size=2><FONT 
size=3>&nbsp;</DIV></FONT></FONT></BODY></HTML>