How to determine what URL a closed source piece of software is connecting to? (OSX) - Stack Overflow most recent 30 from stackoverflow.com 2010-03-12T01:49:54Z http://stackoverflow.com/feeds/question/977405 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/977405/how-to-determine-what-url-a-closed-source-piece-of-software-is-connecting-to-os 0 How to determine what URL a closed source piece of software is connecting to? (OSX) Rich Bradshaw http://stackoverflow.com/users/16511 2009-06-10T18:33:37Z 2009-06-10T18:42:56Z <p>Usually I'd use Wireshark, but is there a really super quick way to determine what URL an app is pulling data from? I need to whitelist the host so that it works through a proxy server, as the app doesn't support proxies.</p> http://stackoverflow.com/questions/977405/how-to-determine-what-url-a-closed-source-piece-of-software-is-connecting-to-os/977417#977417 0 Answer by Justin Niessner for How to determine what URL a closed source piece of software is connecting to? (OSX) Justin Niessner http://stackoverflow.com/users/84651 2009-06-10T18:36:53Z 2009-06-10T18:36:53Z <p>Give this a shot:</p> <p><a href="http://www.charlesproxy.com/" rel="nofollow">Charles Web Debugging Proxy</a></p> <p>It's not quite as heavy as Wireshark so you should be able to get your results pretty quick. Short of something like Wireshark or a HTTP Debugging Proxy, I'm not sure how you'd know.</p> http://stackoverflow.com/questions/977405/how-to-determine-what-url-a-closed-source-piece-of-software-is-connecting-to-os/977444#977444 3 Answer by Mario for How to determine what URL a closed source piece of software is connecting to? (OSX) Mario http://stackoverflow.com/users/120769 2009-06-10T18:41:57Z 2009-06-10T18:41:57Z <p>Fire up terminal and type </p> <p>lsof -i </p> <p>this lists all open internet connections. Of course you can restrict the listing to include only connections from certain executable with -c option. Read the man page for lsof. Learn to use it, it's a great little tool.</p> http://stackoverflow.com/questions/977405/how-to-determine-what-url-a-closed-source-piece-of-software-is-connecting-to-os/977450#977450 1 Answer by JD for How to determine what URL a closed source piece of software is connecting to? (OSX) JD http://stackoverflow.com/users/116156 2009-06-10T18:42:54Z 2009-06-10T18:42:54Z <p>Check out Little Snitch <a href="http://www.obdev.at/products/littlesnitch/index.html" rel="nofollow">http://www.obdev.at/products/littlesnitch/index.html</a></p> <p>Great little program to catch those "phone homes". Cheap too!</p>