random size from 0

This commit is contained in:
BreakWa11 2015-11-12 18:06:12 +08:00
parent 2a03747e76
commit 125c3e88fd

View file

@ -92,7 +92,7 @@ class http_simple(plain.plain):
return buf return buf
head_size = self.get_head_size(buf, 30) head_size = self.get_head_size(buf, 30)
if len(buf) - head_size > 64: if len(buf) - head_size > 64:
headlen = head_size + random.randint(1, 64) headlen = head_size + random.randint(0, 64)
else: else:
headlen = len(buf) headlen = len(buf)
headdata = buf[:headlen] headdata = buf[:headlen]