Adding user failed in old version Firefox / how to install aRoot certificate #61
-
I would like to view the ssl traffic while using kobodl on 10.13/python 3.9.7 --Is this possible?
Without the root certificate installed the expected SSL error returns. ** Desktop (please complete the following information):
|
Beta Was this translation helpful? Give feedback.
Replies: 5 comments
-
I've converted this to a discussion because it sounds like what you're doing is out of scope. I don't know why you'd be messing with root certificataes or SSL here. If you need a captcha, just use a recent version of a modern browser. What does "view my ssl traffic" mean? |
Beta Was this translation helpful? Give feedback.
-
Thankyou view my ssl traffic, sorry, that means I look at the https request response, to learn. Firefox has add on httpfox, so you can see what is going on. Charles does the same thing. |
Beta Was this translation helpful? Give feedback.
-
In case anyone else is in old version Firefox browser, that receives same error, Inserting this code, above the required captcha hack code means the checkbox will appear in this old version of Firefox.
Sidebar: after all that I am suspecting it was unnecessary. Kobodl appears browser agnostic (eg not dependent on). It appears kobodl is not using a user agent, as a browser does, rather the http/https requests are executed from terminal app(python module?) using a feature called access token. Something new to understand. under Notes, at end, which I failed to read... first time -- I suspect it is clearly saying this: from the |
Beta Was this translation helpful? Give feedback.
-
In case anyone else wishes to watch their SSL traffic (http / https request and response traffic), to learn: 1 imported snoop module into kobodl python scripts to learn in context of getting my purchased book, to learn what was going on for a non technical person.
2 By default, Python on macOS doesn't trust Charles self-signed certificate. As a result, you might encounter SSL Error if you try to intercept HTTPS traffic. If you would like to intercept HTTPS Traffic from your Python script, you have to explicitly tell Python to use the Charles Root Certificate at ... on Charles help page at the very end:
|
Beta Was this translation helpful? Give feedback.
In case anyone else wishes to watch their SSL traffic (http / https request and response traffic), to learn:
1 imported snoop module into kobodl python scripts to learn in context of getting my purchased book, to learn what was going on for a non technical person.
2 By default, Python on macOS doesn't trust Charles self-signed certificate. As a result, you might encounter SSL Error if you try to intercept HTTPS traffic. If you would like to intercept HTTPS Traffic from your Python script, you have to explicitly tell Python to use the Charles …