-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathweb_page.py
60 lines (48 loc) · 1.51 KB
/
web_page.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import socket
def send_http_request(host, port, request):
# Create a TCP socket
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
try:
# Connect to the server
sock.connect((host, port))
# Send the HTTP request
sock.sendall(request.encode())
# Receive and print the response
response = sock.recv(4096).decode()
print(response)
finally:
# Close the socket
sock.close()
# Example usage:
print("Uploading a file to a web server using HTTP POST")
# Define the target server details
server_host = "example.com"
server_port = 80
# Define the HTTP request with file upload
request = (
"POST /upload HTTP/1.1\r\n"
"Host: example.com\r\n"
"Content-Type: multipart/form-data; boundary=----WebKitFormBoundary\r\n"
"\r\n"
"------WebKitFormBoundary\r\n"
"Content-Disposition: form-data; name=\"file\"; filename=\"example.txt\"\r\n"
"Content-Type: text/plain\r\n"
"\r\n"
"This is an example file.\r\n"
"------WebKitFormBoundary--\r\n"
)
# Send the HTTP request to upload the file
send_http_request(server_host, server_port, request)
# Example usage:
print("Downloading a web page using HTTP GET")
# Define the target server details
server_host = "example.com"
server_port = 80
# Define the HTTP request for page download
request = (
"GET /index.html HTTP/1.1\r\n"
"Host: example.com\r\n"
"\r\n"
)
# Send the HTTP request to download the web page
send_http_request(server_host, server_port, request)