I use nmap in order to test an external embedded device. Nmap gives different output/results when the port range increase.
For example:
nmap -sT -p 1-10 10.39.123.456
//print all the port's status
nmap -sT -p 1-1000 10.39.123456
//nmap show only the open port
Is possible to avoid this ?
Regards