Open urlhunt opened 8 years ago
While using CapTipper for urls longer than 1024 characters. By changing length in CapTipper-master\CTServer.py at line 120 to 4096 seems to be working for me. Can anyone check this?
original line: self.data = self.request.recv(1024).strip()
modified line: self.data = self.request.recv(4096).strip()
While using CapTipper for urls longer than 1024 characters. By changing length in CapTipper-master\CTServer.py at line 120 to 4096 seems to be working for me. Can anyone check this?
original line: self.data = self.request.recv(1024).strip()
modified line: self.data = self.request.recv(4096).strip()