Connected to localhost.
Escape character is '^]'.
GET /index.html HTTP/1.0
HTTP/1.1 200 OK
Date: Thu, 13 Feb 2014 10:17:11 GMT
Server: Apache/2.4.6 (Ubuntu)
Last-Modified: Thu, 13 Feb 2014 10:16:24 GMT
ETag: "b1-4f246fb464b2b"
Accept-Ranges: bytes
Content-Length: 177
Vary: Accept-Encoding
Connection: close
Content-Type: text/html
<html><body><h1>It works!</h1>
<p>This is the default web page for this server.</p>
<p>The web server software is running but no content has been added, yet.</p>
</body></html>
Connection closed by foreign host.
python substitute:
#!/usr/bin/python
import socket
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect(("www.google.pl",80))
s.send("GET /index.html HTTP/1.0\n\n")
data = s.recv(10000)
print "received data: ",data
s.close()
Brak komentarzy:
Prześlij komentarz