C-Port-Scanner icon indicating copy to clipboard operation
C-Port-Scanner copied to clipboard

A simple port scanner, written in C

Results 1 C-Port-Scanner issues
Sort by recently updated
recently updated
newest added

char hostname[100]; struct sockaddr_in sa; printf("Enter hostname or IP:"); gets(hostname); ^ buffer overflow in this code fix read(0, hostname, 100); // read with size limit hostname[strlen(hostname)-1]=0; // remove newline