From: Wayne Stallwood [mailto:wayne.stallwood@btinternet.com]
Hacking it is not going to be so easy.
A Nmap scan shows no ports within the ones that nmap scans, trying to telnet to the box results in a connection refused.
Does anybody know of a way to scan all 65535 ports on a host (yes I know this is going to take hours) But I am wondering if there is a useful service running on a non standard port (thinks of the Zaurus running it's ftp server on a strange port)
nmap -sU -sS -p 0-65535 -O -v -oN logfile.log netbox.ip.address should give you an udp scan (-sU) and tcp scan (-sS) on all ports (-p 0-65535) with os fingerprinting (-O although you know its linux already) and verbose reporting (-v) and log to a file logfile.log (-oN logfile.log)
Should be what you are looking for, note udp scanning against linux could take a very very long time :)
Adam