-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlab6.py
More file actions
207 lines (142 loc) · 4.51 KB
/
lab6.py
File metadata and controls
207 lines (142 loc) · 4.51 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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
# author: TODO: Kenton Bell
from urllib.parse import urlparse
from random import randint
from scapy.all import *
from socket import gethostbyname
from sys import argv
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[2]
if ifShowTestCode == '-t':
showTestCode = True
except:
pass
servername = "localhost"
targetport = 80
try:
url = argv[1]
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("url: " + url)
print("Url Parsed:" + str(url_parsed))
serverName = url_parsed.hostname
serverPort = 80
first_name = "Kenton"
tcpInitialSequenceNumber = len(first_name)
tcpInitialSequenceNumber = 6 #or we can hardcode, which I trust more...
# Step 1 TCP
tcp = TCP()
ip = IP()
tcp.dport = serverPort
tcp.flags = 'S'
tcp.seq = tcpInitialSequenceNumber
# tcp.sport = serverPort
# tcp.chksum = 0
#make ip dest
ip.dst = serverName
try:
firstResponse = sr1(ip/tcp)
except:
print("ERROR: The first sr1 broke.")
return
if showTestCode:
print("We successfully sent the first packet")
#send ACK
# tcp.seq = firstResponse.seq+1
tcp.seq = 7
tcp.ack = firstResponse.seq+1
# tcp.dport = firstResponse.dport #still 80
tcp.flags = 'A'
try:
send(ip/tcp)
except:
print("ERROR. The returning ACK packet was not sent.")
return
# send ACK
# 2 make get PA (push/ack) request
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)
#prepare PUSH/ACK
tcp.flags = 'PA'
tcp.add_payload(message.encode())
try:
send(ip/tcp)
except:
print("there was an error with the payload send message")
return
# # modifiedMessage = ""
# # loopCount = 0
# while True:
# # loopCount += 1
#
# response = tcp.recv(2048)
#
# if len(response) == 0:
# # print("Loop count: " + str(loopCount) + "")
# # print("Closing Connection")
# break
# modifiedMessage += response.decode()
#
# splitMessage = modifiedMessage.split("\r\n") #1 to cut off 200 request
#
#
# headers, body = modifiedMessage.split("\r\n\r\n", 1)
#
# print(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()