Post Reply 
ProxHTTPSProxyMII: Development
Dec. 22, 2015, 09:23 AM
Post: #196
RE: ProxHTTPSProxyMII: Development
(Dec. 10, 2015 11:43 PM)kik0s Wrote:  hey guys. so i tried to work with that error
Code:
[SSL: TLSV1_ALERT_UNKNOWN_CA] tlsv1 alert unknown ca (_ssl.c:600)" while trying to establish local SSL tunnel for [some.site.net:443]

The warning indicates it is a local SSL tunnel error. Could you please advise the site name if the problem could be reproduced every time you try it?
Add Thank You Quote this message in a reply
Dec. 22, 2015, 11:48 AM
Post: #197
RE: ProxHTTPSProxyMII: Development
(Dec. 22, 2015 09:23 AM)whenever Wrote:  
(Dec. 10, 2015 11:43 PM)kik0s Wrote:  hey guys. so i tried to work with that error
Code:
[SSL: TLSV1_ALERT_UNKNOWN_CA] tlsv1 alert unknown ca (_ssl.c:600)" while trying to establish local SSL tunnel for [some.site.net:443]

The warning indicates it is a local SSL tunnel error. Could you please advise the site name if the problem could be reproduced every time you try it?

i get this error when i am using facebook.
Add Thank You Quote this message in a reply
Dec. 23, 2015, 02:08 AM
Post: #198
RE: ProxHTTPSProxyMII: Development
Does it happen every time? Does the site load anyway?
Add Thank You Quote this message in a reply
Dec. 23, 2015, 02:20 PM
Post: #199
RE: ProxHTTPSProxyMII: Development
Not in my case. It only happens with certains websites. For example, while launching the Firefox browser:
Code:
"[SSL: TLSV1_ALERT_UNKNOWN_CA] tlsv1 alert unknown ca (_ssl.c:1769)" while trying to establish local SSL tunnel for [shavar.services.mozilla.com:443]
Add Thank You Quote this message in a reply
Dec. 24, 2015, 12:18 AM
Post: #200
RE: ProxHTTPSProxyMII: Development
(Dec. 22, 2015 08:51 AM)Faxopita Wrote:  
(Dec. 22, 2015 03:57 AM)Aunt Elsie Wrote:  ./proxhttpsproxy.py

Could Thee (You) please try running the script this way…
Code:
python_version proxhttpsproxy.py

To know which Python version, input python, then press TAB and select Thy (Your) version.

Ok, I did python3.2 proxhttpsproxy.py - same error.
Then I made "short cuts" in /usr/bin thereby only requiring entering command - proxhttpsproxy.ph - still same error (I also did the same with CertTool.ph and ProxyTool.ph in case they couldn't be found either. Still same error.

I created user proxhttpsproxy, copied everything there, made things executible etc - still same error...

Is this version the latest? Is anyone else running it on Linux? If not, might I suggest, Linux doesn't do directories like Windoz. In windoz, if you are in the directory where ProxHTTPSProxy.py is, you can do ProxHTTPSProxy.py. However, you cannot in Linux. You have to do this ./ProxHTTPSProxy.ph. I know it's strange. So, I'm wondering if the 3 main scripts assume Windoz style in referencing other directories and perhaps that's the cause of the errors? In particular, in CertTool.py, line 10 says CERTDIR = "Certs" and maybe, a complete path name is needed or again "./Certs" ? I'll experiment and let you know if that is indeed the case...
Add Thank You Quote this message in a reply
Dec. 24, 2015, 01:17 AM
Post: #201
RE: ProxHTTPSProxyMII: Development
Well, I tried my previous sugguestion and it didn't help anything. The error is still ProxyTool line 17 import selectors - error no module named selectors.

So...
Add Thank You Quote this message in a reply
Dec. 24, 2015, 01:23 PM (This post was last modified: Dec. 24, 2015 11:03 PM by Faxopita.)
Post: #202
RE: ProxHTTPSProxyMII: Development
(Dec. 24, 2015 12:18 AM)Aunt Elsie Wrote:  Is this version the latest? Is anyone else running it on Linux?

I'm using Version 1.3.1, which was obtained from this link. You could visit this thread (again) and start from Step 3.

Do you have all the required components installed as mentioned in Step 3?
Add Thank You Quote this message in a reply
Dec. 25, 2015, 03:28 AM
Post: #203
RE: ProxHTTPSProxyMII: Development
(Dec. 24, 2015 01:17 AM)Aunt Elsie Wrote:  Well, I tried my previous sugguestion and it didn't help anything. The error is still ProxyTool line 17 import selectors - error no module named selectors.

So...

Upgrade your python installation to v3.4+ please.
Add Thank You Quote this message in a reply
Dec. 26, 2015, 03:16 PM
Post: #204
RE: ProxHTTPSProxyMII: Development
(Dec. 23, 2015 02:08 AM)whenever Wrote:  Does it happen every time? Does the site load anyway?

it happens every time. site does not load. sometimes it let some things pass. its doing that for the content hostnames for facebook. like images and videos and so on.
Add Thank You Quote this message in a reply
Dec. 30, 2015, 08:35 AM
Post: #205
RE: ProxHTTPSProxyMII: Development
(Dec. 26, 2015 03:16 PM)kik0s Wrote:  it happens every time. site does not load. sometimes it let some things pass. its doing that for the content hostnames for facebook. like images and videos and so on.

I asked because I couldn't reproduce it on my machine. Have you tried it with a new installation, and a different browser? Does anyone else have the same problem?
Add Thank You Quote this message in a reply
Jan. 12, 2016, 12:24 AM
Post: #206
RE: ProxHTTPSProxyMII: Development
(Dec. 30, 2015 08:35 AM)whenever Wrote:  
(Dec. 26, 2015 03:16 PM)kik0s Wrote:  it happens every time. site does not load. sometimes it let some things pass. its doing that for the content hostnames for facebook. like images and videos and so on.

I asked because I couldn't reproduce it on my machine. Have you tried it with a new installation, and a different browser? Does anyone else have the same problem?

i had that problem with the facebook app on my phone. now they seemed to change something. i guess they are using hsts?! it does not show up in the loag of proxhttps anymore when i open the app.

i will test it a bit more and tell you when something else shows up.
Add Thank You Quote this message in a reply
Jan. 12, 2016, 12:45 PM
Post: #207
RE: ProxHTTPSProxyMII: Development
Thanks to urllib3, now ProxHTTPSProxyMII supports socks proxy.

Code:
Version 1.4 (20160112)
--------------

+ Socks proxy support (needs urllib3 >= 1.14)
* Certifications are now v3 instead of v1

Upgrade urllib3 with socks proxy support:

Code:
pip install -U urllib3
pip install PySocks


Attached File(s)
.zip  ProxHTTPSProxyMII_py 1.4.zip (Size: 216.2 KB / Downloads: 1113)
Add Thank You Quote this message in a reply
[-] The following 3 users say Thank You to whenever for this post:
kik0s, Faxopita, rogern
Jan. 12, 2016, 06:09 PM
Post: #208
RE: ProxHTTPSProxyMII: Development
(Jan. 12, 2016 12:45 PM)whenever Wrote:  Thanks to urllib3, now ProxHTTPSProxyMII supports socks proxy.

Would love an exe version, if at all possible. Thanks.

soccerfan
Add Thank You Quote this message in a reply
Jan. 12, 2016, 11:15 PM (This post was last modified: Jan. 12, 2016 11:16 PM by kik0s.)
Post: #209
RE: ProxHTTPSProxyMII: Development
(Jan. 12, 2016 12:45 PM)whenever Wrote:  Thanks to urllib3, now ProxHTTPSProxyMII supports socks proxy.

Code:
Version 1.4 (20160112)
--------------

+ Socks proxy support (needs urllib3 >= 1.14)
* Certifications are now v3 instead of v1

Upgrade urllib3 with socks proxy support:

Code:
pip install -U urllib3
pip install PySocks

is it possible to bind the front and rear port to an ip? proxhttps listens on every interface. thats a bit creepy Smile!
Add Thank You Quote this message in a reply
Jan. 25, 2016, 12:09 AM (This post was last modified: Apr. 05, 2016 05:35 AM by JJoe.)
Post: #210
RE: ProxHTTPSProxyMII: Development
Update April 5, 2016

Apologies to all.

Version 1.4 is working as intended. My client was indeed misconfigured. It was incorrectly forwarding regular HTTP to the rear proxy.

Before 1.3, I would set the Proxomitron to forward both http and https to the rear proxy.

Very sorry this update didn't come sooner.
I found my mistake yesterday while trying to fix what was not broken. D'oh!


Bug report: Version 1.4 (20160112) HTTP support lost

My HTTP requests receive

Code:
[18:03] [Misconfigured HTTPS proxy port] http://bing.com/

Code:
400: Bad Request

The following error occurred while trying to access http://bing.com/

The proxy setting of the client is misconfigured. Please set the HTTPS proxy port to 8079 and check the Docs for other settings.
Generated on 2016-01-24 18:03:12.492425 by ProxHTTPSProxyMII RearProxy/v1.4.
Add Thank You Quote this message in a reply
Post Reply 


Forum Jump: