Programmatically Install Certificate into Mozilla

Here is an alternative way that doesn’t override the existing certificates: [bash fragment for linux systems] certificateFile=”MyCa.cert.pem” certificateName=”MyCA Name” for certDB in $(find ~/.mozilla* ~/.thunderbird -name “cert8.db”) do certDir=$(dirname ${certDB}); #log “mozilla certificate” “install ‘${certificateName}’ in ${certDir}” certutil -A -n “${certificateName}” -t “TCu,Cuw,Tuw” -i ${certificateFile} -d ${certDir} done You may find certutil in the libnss3-tools … Read more

How do I write a Firefox Addon? [closed]

We tried to make http://developer.mozilla.org/en/Extensions answer all those questions. The first three links in the documentation section are about getting started (that includes Adam’s link). The newsgroup and the irc channel in the Community section are the official discussion boards. Mozilla is very complex, so any kind of API guide would be overwhelming and hard … Read more

Firefox Links to local or network pages do not work

This is the default Firefox behavior designed for security .The assumption is probably that most web sites don’t know what and where are you local files (including UNC paths). This could be turned off in firefox: type “about:config” in the address bar and accept “i’ll be careful” find “security.checkloaduri” in older versions or “security.fileuri.strict_origin_policy” in … Read more

Webdriver Unable to connect to host 127.0.0.1 on port 7055 after 45000 ms

Don’t know if you resolved this problem, but I have just resolved the same issue from the other side. It appears Selenium and Firefox have difficulty talking to each other – I suspect Firefox ‘evolve’ changes over a number of releases, so backward and forward compatibility are not always guaranteed, and incompatibility always seems to … Read more

Accessing ePass2003 Auto token through browser

Disclosure: I work for CISPL To access ePass2003 or any Smartcard or Cryptographic USB Token, you need to use Browser Extension. As far as I know, browsers may use the keys from crypto device for TLS handshake. My company provides such extension Signer.Digital Browser Extension. Chrome and Firefox Windows Host may be downloaded from https://signer.digital/downloads/Signer.Digital.Browser.Extension.Setup.msi … Read more