Results 1 to 8 of 8

Thread: Anyone want to explain SSL to me?

  1. #1
    A Straw? And Fruit? Bazzlad's Avatar
    Join Date
    Jul 2003
    Location
    The Big Rhesus House Stourbridge
    Posts
    3,072
    Thanks
    90
    Thanked
    78 times in 44 posts

    Anyone want to explain SSL to me?

    As I've never had to use it before.
    I want to set up an order system online, and as credit card details will be exchanged I want it to be secured.

    Now from what I gather, you buy the certificate and secure your server OR you buy a shared certificate from you hosting company (what I intend to do).

    That route I intend to take means I'll have a folder in my webspace which is secured.

    This is where it become hazy.
    Can I just use a mail form (HTML post and php) inside this folder and it'll be protected?
    Can I email the information securely to the end user?
    Or should I use a database? Will that need securing?

    Help please!

    Cheers!

  2. #2
    Will work for beer... nichomach's Avatar
    Join Date
    Jul 2003
    Location
    Preston, Lancs
    Posts
    6,137
    Thanks
    564
    Thanked
    139 times in 100 posts
    • nichomach's system
      • Motherboard:
      • Gigabyte GA-870A-UD3
      • CPU:
      • AMD Phenom II X6 1055T 95W
      • Memory:
      • 16GB DR3
      • Storage:
      • 1x250GB Maxtor SATAII, 1x 400GB Hitachi SATAII
      • Graphics card(s):
      • Zotac GTX 1060 3GB
      • PSU:
      • Coolermaster 500W
      • Case:
      • Coolermaster Elite 430
      • Operating System:
      • Windows 10
      • Monitor(s):
      • Dell 20" TFT
      • Internet:
      • Virgin Media Cable

    Re: Anyone want to explain SSL to me?

    SSL means that the session with the browser is encrypted; that just means that traffic between your site and the punter is protected from eavesdropping (well, as well as 128-bit encryption can make it, I guess). That's distinct from whatever security measures you put into your site once the punter's using it. To put it another way, if you left your customers' credit card details in a plain text file with no permissions set on your site, SSL wouldn't stop nasty cracker person from reading that file, but it would protect them from being eavesdropped on while they did.

    Can I ask why you'd want to reinvent the wheel? There're a lot of online payment services you could use - NoChex, WorldPay etc.

  3. #3
    A Straw? And Fruit? Bazzlad's Avatar
    Join Date
    Jul 2003
    Location
    The Big Rhesus House Stourbridge
    Posts
    3,072
    Thanks
    90
    Thanked
    78 times in 44 posts

    Re: Anyone want to explain SSL to me?

    Thanks for that.
    Cleared it up a little - Them giving me the data is protected, what I do with it afterwards is down to me.

    The reason I'm re-inventing the wheel is because I don't want to take a payment. I just need the details for a credit check.

  4. #4
    Agent of the System ikonia's Avatar
    Join Date
    May 2004
    Location
    South West UK (Bath)
    Posts
    3,736
    Thanks
    39
    Thanked
    68 times in 51 posts

    Re: Anyone want to explain SSL to me?

    keep in mind there are rules on what and how you store the data. There are also rules and guidelines for using shared servers (no idea if you are or not but your post sounds like it is).

    Where is your target audience based UK/USA/Asia etc again, I assume UK, but just be aware some countries only allow X level of encyption, some none at all, so make sure you don't break their laws if your targeting or expecting overseas guests.
    It is Inevitable.....


  5. #5
    A Straw? And Fruit? Bazzlad's Avatar
    Join Date
    Jul 2003
    Location
    The Big Rhesus House Stourbridge
    Posts
    3,072
    Thanks
    90
    Thanked
    78 times in 44 posts

    Re: Anyone want to explain SSL to me?

    All UK based, and I'll look at the rules for storing data.

    Cheers!

  6. #6
    Comfortably Numb directhex's Avatar
    Join Date
    Jul 2003
    Location
    /dev/urandom
    Posts
    17,074
    Thanks
    228
    Thanked
    1,026 times in 677 posts
    • directhex's system
      • Motherboard:
      • Asus ROG Strix B550-I Gaming
      • CPU:
      • Ryzen 5900x
      • Memory:
      • 64GB G.Skill Trident Z RGB
      • Storage:
      • 2TB Seagate Firecuda 520
      • Graphics card(s):
      • EVGA GeForce RTX 3080 XC3 Ultra
      • PSU:
      • EVGA SuperNOVA 850W G3
      • Case:
      • NZXT H210i
      • Operating System:
      • Ubuntu 20.04, Windows 10
      • Monitor(s):
      • LG 34GN850
      • Internet:
      • FIOS

    Re: Anyone want to explain SSL to me?

    ssl relies on a chain of trust - your web browser won't know that foocorp.com is who it says it is, but it does know that verisign know what they're doing (nobody laugh), so if your web browser visits foocorp.com, and foocorp.com's certificate is signed by a trusted party like verisign, then there's an established chain of trust, and you can safely proceed

    trust can break down in one of the following scenarios:
    * you visit foocorp.com, but the certificate they give you is for barltd.org.uk - they're not who they say they are, trust is lost
    * the certificate is expired, or hasn't started yet - they might no longer be who they say they are, trust is lost
    * the certificate you get is signed by somebody you don't trust (e.g. foocorp.com signed it themselves) - you don't know who to ultimately believe, and trust is lost

    browsers give ssl popup warnings on the three events above

  7. #7
    TiG
    TiG is offline
    Walk a mile in other peoples shoes...
    Join Date
    Jul 2003
    Location
    Questioning it all
    Posts
    6,213
    Thanks
    43
    Thanked
    47 times in 42 posts

    Re: Anyone want to explain SSL to me?

    Yep the new regulations for storing credit card details are now in force. Most people are still in breach but they include both eletronic and physical security. All stored passwords must be encrypted, and suggestions is that you should always use something like a hosted service now. I.e just post your details to an online agency like CommIdea etc.

    https://www.pcisecuritystandards.org/tech/

    Link to the standards above.

    TiG
    -- Hexus Meets Rock! --

  8. #8
    A Straw? And Fruit? Bazzlad's Avatar
    Join Date
    Jul 2003
    Location
    The Big Rhesus House Stourbridge
    Posts
    3,072
    Thanks
    90
    Thanked
    78 times in 44 posts

    Re: Anyone want to explain SSL to me?

    Cheers mate,
    An encrypted email seems the easier way than storing it on a server now!!!
    Will look into PGP and PHP - wish I did ASP, could write it in an encrypted PDF then.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. SSL Certificates
    By TonyBurn in forum Software
    Replies: 7
    Last Post: 09-11-2005, 10:28 AM
  2. Someone explain betting for me! Grand National
    By Tifosi in forum General Discussion
    Replies: 8
    Last Post: 09-04-2005, 03:41 PM
  3. Apache Virtual Hosts and SSL certificates
    By DaBeeeenster in forum Software
    Replies: 9
    Last Post: 09-09-2004, 09:33 AM
  4. CPUCitys SSL ...
    By unrealrocks in forum Retail Therapy and Bargains
    Replies: 2
    Last Post: 08-12-2003, 01:01 AM
  5. Explain your..
    By Russ in forum General Discussion
    Replies: 20
    Last Post: 12-10-2003, 10:43 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •