Tagged: HTTP Secure

How to Deploy HTTPS Correctly | Electronic Frontier Foundation

Logo of the Electronic Frontier Foundation
Image via Wikipedia

How to Deploy HTTPS Correctly | Electronic Frontier Foundation. This is important for web developers and managers to understand. Many times I have been told that using HTTPS is too CPU intensive and that’s why it isn’t done. Adam Langley said:

In order to do this we had to deploy no additional machines and no special hardware. On our production frontend machines, SSL/TLS accounts for less than 1% of the CPU load, less than 10KB of memory per connection and less than 2% of network overhead. Many people believe that SSL takes a lot of CPU time and we hope the above numbers (public for the first time) will help to dispel that. [emphasis in original]

Share

Configure Chrome settings to work with Tor on Mac OSX? – Google Chrome Help

Screenshot of Darwine 1.1.21 running under Mac OSX
Image via Wikipedia

This was a bit tricky. I used the basic settings from skittixch but had to make a few minor changes.

**solved***

  1. Download and install the vidalia bundle.
  2. Open Chrome and click the wrench button, go to under the hood and click “Change Proxy Settings.”
  3. System preferences will open, and you’ll be in the “proxies” tab of your network settings.
  4. Select “Web Proxy (HTTP)”.
  5. The web proxy server is “Localhost” (without quotes), and the port is 8118.
  6. Click ok
  7. Go to https://check.torproject.org/ to see if you’re on the tor network.

However I had to change step 4. In addition to doing Step 4 I had to also checkmark “Secure Web Proxy (HTTPS) and use the same Localhost and 8118 port. Then I clicked on ok and checked at the URL in step 7.

Works like a charm!

via Configure Chrome settings to work with Tor on Mac OSX? – Google Chrome Help.

Share

How to enable HTTPS/SSL encryption for Internet Printing Protocol (IPP).

Photo of mouse desgined by André Guignard. Don...
Image via Wikipedia

Pretty easy.  Just generate a cert and then import it.  You can read more details here or just follow the steps below.

“If you use Internet Printing Protocol (IPP) to share or access your printers over the Internet, keep in mind, print jobs aren’t secure. However you can enable encryption by setting up IIS with a security certificate, so you can access the printer via the https address using SSL.

First you need to create a self-signed cert using IIS:

  1. Open the IIS Manager from the Control Panel.
  2. Double-click the Server Certificates icon.
  3. Click the Create Self-Signed Certificate link on the right.
  4. On the dialog box, enter a name, and click OK.

Next you need to create bindings for HTTPS using IIS:

  1. On the left Connections list, expand the Web Sites, right-click your site name and select Edit Bindings.
  2. On the bindings window, click the Add button.
  3. Select https for the Type and choose the certificate name, and then click OK.

Remember, you need to make sure port 433 is open by your firewalls. Plus you’ll probably need to set up a port forward on your router to forward traffic on port 433 to the computer that’s hosting the printer.

Then access the printer list with https://x.x.x.x/printers (where x.x.x.x equals your Internet IP address).”

Share