How to determine what URL a closed source piece of software is connecting to? (OSX) - Stack Overflow most recent 30 from stackoverflow.com2010-03-12T01:49:54Zhttp://stackoverflow.com/feeds/question/977405http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/977405/how-to-determine-what-url-a-closed-source-piece-of-software-is-connecting-to-os0How to determine what URL a closed source piece of software is connecting to? (OSX)Rich Bradshawhttp://stackoverflow.com/users/165112009-06-10T18:33:37Z2009-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#9774170Answer by Justin Niessner for How to determine what URL a closed source piece of software is connecting to? (OSX)Justin Niessnerhttp://stackoverflow.com/users/846512009-06-10T18:36:53Z2009-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#9774443Answer by Mario for How to determine what URL a closed source piece of software is connecting to? (OSX)Mariohttp://stackoverflow.com/users/1207692009-06-10T18:41:57Z2009-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#9774501Answer by JD for How to determine what URL a closed source piece of software is connecting to? (OSX)JDhttp://stackoverflow.com/users/1161562009-06-10T18:42:54Z2009-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>