-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlab4.py
More file actions
191 lines (129 loc) · 4.63 KB
/
lab4.py
File metadata and controls
191 lines (129 loc) · 4.63 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
# author: TODO: Kenton Bell
import os
from sys import argv, path
from socket import *
from urllib.parse import urlparse
def main():
# these show helpful PRINT code for debugging purposes
# # # # to have nothing run in command line, set all to false
showTestCode = False
try:
ifShowTestCode = argv[4]
if ifShowTestCode == '-t':
showTestCode = True
except:
pass
servername = "localhost"
#this is the input
try:
flag = argv[1]
except:
print("ERROR: No flag provided. Here are the available flags: -p for printing, -f for outputting. \n The next argument should be the target port (80 is recommended)\n The last argument should be the url.")
return
printing = False
outputting = False
if flag == '-p':
printing = True
elif flag == '-f':
outputting = True
else:
print("ERROR: Invalid flag. Here are the available flags: -p for printing, -f for outputting. ")
return
try:
targetport = argv[2]
except:
print("ERROR: Invalid target port. The next argument should be the target port (80 is recommended)")
return
# targetport = argv[2]
try:
url = argv[3]
except:
print("ERROR: Invalid url. The next argument should be the url.")
return
if not url.startswith("http://"):
url = "http://" + url
if not url.endswith("/"):
url += "/"
url_parsed = urlparse(url)
if showTestCode:
print("flag: " + flag)
print("targetport: " + targetport)
print("url: " + url)
print("Url Parsed:" + str(url_parsed))
serverName = url_parsed.hostname
serverPort = int(targetport) #make sure it is an int and 80
# Step 1 TCP
clientSocket = socket(AF_INET, SOCK_STREAM)
clientSocket.connect((serverName, serverPort))
# 2
if not url_parsed.path:
path = "/"
else:
path = url_parsed.path
message = "GET " + path + " HTTP/1.1\r\nHost: " + serverName + "\r\nConnection: close\r\n\r\n"
if showTestCode:
print("sending: \n\n" + message)
try:
clientSocket.send(message.encode())
except:
print("there was an error with the client socket send message")
return
modifiedMessage = ""
# loopCount = 0
while True:
# loopCount += 1
response = clientSocket.recv(2048)
if len(response) == 0:
# print("Loop count: " + str(loopCount) + "")
# print("Closing Connection Closing Connection Closing Connection Closing Connection Closing Connection Closing Connection")
break
modifiedMessage += response.decode()
splitMessage = modifiedMessage.split("\r\n") #1 to cut off 200 request
clientSocket.close()
headers, body = modifiedMessage.split("\r\n\r\n", 1)
if printing:
print(body)
if outputting:
with open("output.txt", "w") as f:
f.write(body)
'''
try:
justHTMLOutput = splitMessage[splitMessage.index("<!DOCTYPE HTMLE>") + 0:] #added E to avoid
except:
if showTestCode:
print("there was an error with the just html output.\n\nHere is the split message instead: \n\n" + str(splitMessage))
try:
justHTMLOutput = splitMessage[splitMessage.index("<htmEl>") + 0:] #added E to avoid
except:
if showTestCode:
print("there was an error with the just html output AGAINNNNNNNNNN.\n\nHere is the split message instead: \n\n" + str(splitMessage))
try:
justHTMLOutput = splitMessage[splitMessage.index("Connection:E close") + 1:] #added E to avoid
except:
if showTestCode:
print("No html found in the response! Running last case: \n\n")
# print(str(splitMessage))
headers, body = modifiedMessage.split("\r\n\r\n", 1)
if printing:
print(body)
if outputting:
with open("output.txt", "w") as f:
f.write(body)
return
if showTestCode:
print("\nOUTPUTTiNG\n")
if outputting:
with open("output.txt", "w") as f: #overwrites file
f.write("")
for line in justHTMLOutput:
if printing:
if line:
print(line)
if outputting:
if line:
with open("output.txt", "a") as f:
f.write(line + "\n")
# print("Here is the response from the server: \n" + str(splitMessage)
'''
if __name__ == "__main__":
main()