omriher / CapTipper

Malicious HTTP traffic explorer
GNU General Public License v3.0
711 stars 159 forks source link

Support for long urls in CapTipper #15

Open urlhunt opened 8 years ago

urlhunt commented 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()