How to find my username and password for my proxy server?

1

I am trying to get data from URL using Python running on Windows 7. And I get a 404 error. Some more details can be found here.

My interpretation of the problem is that the response comes from the proxy server and proxy responses this way because it does not get username and password from me.

So, my question is: How can I find my username and password (credentials) for the proxy. I tried to use my Windows credentials but they are not accepted. Apparently my browser have them because they can go through the proxy. So, how can I get them.

Roman

Posted 2015-10-28T08:34:59.160

Reputation: 375

Try Nirsoft IE PassView

– DavidPostill – 2015-10-28T09:36:41.693

A browser won't know to prompt for/send credentials unless the proxy replies with a 403. A 404 would just result in an error. So it is unlikely that this is the cause of your issue. It is more likely you are targetting the wrong port on the proxy server. – Paul – 2015-10-28T12:41:31.757

No answers