Changed tcp scanning to be a bit more random. Might confuse really basic defenses.

This commit is contained in:
danielguardicore 2016-09-07 19:01:19 +03:00
parent ce3eaa9b2e
commit 9f27825789
1 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,5 @@
import time
from random import shuffle
from network import HostScanner, HostFinger
from model.host import VictimHost
from network.tools import check_port_tcp
@ -19,8 +20,11 @@ class TcpScanner(HostScanner, HostFinger):
assert isinstance(host, VictimHost)
count = 0
# maybe hide under really bad detection systems
target_ports = self._config.tcp_target_ports[:]
shuffle(target_ports)
for target_port in self._config.tcp_target_ports:
for target_port in target_ports:
is_open, banner = check_port_tcp(host.ip_addr,
target_port,