Minor cleanup

This commit is contained in:
Miroslav Stampar
2018-10-02 14:07:14 +02:00
parent d38a0542d8
commit 1b6365b195
6 changed files with 12 additions and 36 deletions

View File

@@ -14,8 +14,10 @@ def dependencies():
def randomIP():
numbers = []
while not numbers or numbers[0] in (10, 172, 192):
numbers = sample(xrange(1, 255), 4)
return '.'.join(str(_) for _ in numbers)
def tamper(payload, **kwargs):