• Mac Security

    Quicker Port Scanning

    The Mac and most distributions of Linux come with netcat built in. The Mac distribution is known as nc. You can run a super-quick port scan of another host without installing any third party tools. I’ve been using stroke to run my port scans for a long time. I am a fool. Netcat’s better. Don’t be like me. Use nc: /usr/bin/nc -z 10.10.10.10 1-100000

  • Mac Security,  Mass Deployment,  MobileMe,  Network Infrastructure

    Network Port Testing With Netcat

    You can do some pretty simple testing of ports and network communications using strategies I’ve outlined in the past with tcpdump, trace route, telnet, curl, stroke and of course ping. However, netcat has a few interesting things you can do with it; namely actually run a port super-quickly to test traffic between subnets, forcing scans of ipv6 traffic, debugging sockets, keeping connections alive, parodying through SOCKS 4 and 5 and just checking for daemons that are listening rather than actually sending data to them. In this first example, we’re going to just check that Apple’s web server is accessible (adding -v for verbose output): /usr/bin/nc -v www.apple.com 80 The result would be pretty verbose…