UPDATED I made a simple proxy server based on SimpleHTTPServer , but I have a problem with the POST method, when someone asks for the POST method, it shows an error, so I made the do_POST() function, but when I request using POST (works fine with most sites except vbulletin script ! ), I just get the message: connection was reset
so now the problem is that I'm trying to log in to the vbulletin site to which he said. The connection was reset I have no idea why!
class Proxy(SimpleHTTPServer.SimpleHTTPRequestHandler): def do_GET(self): print self.address_string() print "User ip:",self.client_address[0] print self.date_time_string()
hope i can get a hint of it
source share