I have made a small http server in python, I get the request from the browser parse the header and send to specified address and give the reply back to the user It is working good with http but with websites using https it is not working
socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((webserver,port))
s.send(data)
The data is what the client requested and the webserver and the port is what i parsed I just want to know that do i have to use the same technique for https if not then why this method is not working