• Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
  • Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!

Heartbleed bug

Collapse
X
  •  
  • Filter
  • Time
  • Show
Clear All
new posts

    #21
    If he's writing PHP shopping carts, he ought to at least have a basic knowledge of what SSL is
    You got me worried now. I have written a PHP shopping cart and had no idea what SSL was before all this news. Though I did check out the potential security issues and implement the suggested solutions, HTMLentities, limits on data length etc. so maybe I did indirectly.
    bloggoth

    If everything isn't black and white, I say, 'Why the hell not?'
    John Wayne (My guru, not to be confused with my beloved prophet Jeremy Clarkson)

    Comment


      #22
      Originally posted by xoggoth View Post
      You got me worried now. I have written a PHP shopping cart and had no idea what SSL was before all this news. Though I did check out the potential security issues and implement the suggested solutions, HTMLentities, limits on data length etc. so maybe I did indirectly.
      Didn't mean to alarm you!

      Basically SSL is a way of securely encrypting personal data. So, as a rule of thumb, you should never enter credit card details on a site which isn't running SSL (as pg politely pointed out, in 99% of cases you see the https and padlock logo in the address bar.)

      In the ideal world, all personal details (names, addresses, passwords) would be encrypted.

      In the case of your site (assuming it's the one you've posted links to in the past) you're capturing name and address details over a non-secure connection, so someone could potentially 'listen' to the traffic and steal those details. You're redirecting to worldpay to get your payment details, and they are running SSL, so your customers' card details are safe.

      Some sites with logins (like CUK) don't use SSL either - I'm guessing that actual passwords aren't sent, but instead a hash of the password, which is compared to a stored hash in the database. Session ids are probably thrown into the mix too, so that the hash is a combination of password and sessionId and changes as sessions expire. In theory that makes it hackable - by listening to the network traffic I could steal the hash of your password and fake a login to your session, but I couldn't actually get hold of your password. To do serious damage, I guess we'd have to steal admin's account
      Last edited by mudskipper; 14 April 2014, 18:28.

      Comment

      Working...
      X