vote up 0 vote down star

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.

flag

3 Answers

vote up 3 vote down check

Fire up terminal and type

lsof -i

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.

link|flag
vote up 0 vote down

Give this a shot:

Charles Web Debugging Proxy

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.

link|flag
vote up 1 vote down

Check out Little Snitch http://www.obdev.at/products/littlesnitch/index.html

Great little program to catch those "phone homes". Cheap too!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.