Hi. I have some code for doing port scans. TCP works well, UDP does not. Can anyone assist? The UDP scan code is below.
Thanks,
James
protected String scanUDP(InetAddress IP, int port)
{
try{
byte [] bytes = new byte[128];
DatagramSocket ds = new DatagramSocket();
DatagramPacket...