Suspicious requests to backend server

I’m still very new to security and server handling in general, so excuse my lack of knowledge. I am currently running a small trading algorithm using the Binance API. The server is a windows server from VPSServer.com. The backend (server side) handles requests from an app I made that also runs on windows. The app… Read More Suspicious requests to backend server

www.google.com returns HTTP 301

I’m looking at this example of making a simple HTTP request in Python using only the built in socket module: import socket target_host = "www.google.com" target_port = 80 client = socket.socket(socket.AF_INET, socket.SOCK_STREAM) client.connect((target_host, target_port)) client.send(b"GET / HTTP/1.1\r\nHost: google.com\r\n\r\n") response = client.recv(4096) client.close() print(response) When I run this code, I get back a 301: <HTML><HEAD><meta http-equiv="content-type"… Read More www.google.com returns HTTP 301