Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion modules/test/services/conf/module_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"docker": {
"depends_on": "base",
"enable_container": true,
"timeout": 600
"timeout": 900
},
"tests": [
{
Expand Down Expand Up @@ -310,6 +310,10 @@
{
"number": 5903,
"type": "tcp"
},
{
"number": 6001,
"type": "tcp"
}
]
},
Expand Down
2 changes: 1 addition & 1 deletion modules/test/services/python/src/services_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def _process_port_results(self):
self._scan_results.update(self._scan_udp_results)

def _scan_tcp_ports(self):
max_port = 1000
max_port = 10000
LOGGER.info('Running nmap TCP port scan')
nmap_results = util.run_command( # pylint: disable=E1120
f'''nmap --open -sT -sV -Pn -v -p 1-{max_port}
Expand Down