Secure Connection Needed

Discussion in 'Security' started by crath, Jan 2, 2009.

  1. #1
    Well I'll throw out my scenario, then I'll ask my question.

    I have a form, pretty decent size form, that potential customers will be filling out. It is a financing form so there is a lot of touchy information being sent. I have a plain old .html page that has this form, and thats all it really needs to be. I was planning on having it submit the data straight to our sales team's email account, but an alternative was saving it on a database (hosted by godaddy, so its pretty secure).

    My question is, what steps can I take to secure this data? I was looking into stuff like SSL and encryption and all that jib jab, but don't understand it much. Since its a pretty simple concept, (securely saving the form data), im guessing the answer shouldnt be too hard. Thanks to anybody that can point me in the right direction!
     
    crath, Jan 2, 2009 IP
  2. SSANZ

    SSANZ Peon

    Messages:
    861
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    0
    #2
    yes SSL cert would be the best solution.
     
    SSANZ, Jan 7, 2009 IP
  3. ezay

    ezay Peon

    Messages:
    212
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    I would say use a encryped php script.
     
    ezay, Jan 16, 2009 IP
  4. crath

    crath Well-Known Member

    Messages:
    661
    Likes Received:
    33
    Best Answers:
    0
    Trophy Points:
    100
    #4
    So I'm looking at SSL certs and that is probably the way im going to go. Now, here are my noobie questions.

    1) Is it just "applied" to the domain, allowing for https: links?

    2) It is only 1 page that I need to use this on, http://www.myDomain.com/form.php , so, would I just link to it using https:// and thats all I need to do to keep the connection safe?

    3) The file collects the data from a form, and sends it via the mail() function. Its a pretty basic script, so I dont think there is anything i need todo to that.

    any tips / tricks / help is greatly appreciated!
     
    crath, Jan 17, 2009 IP
  5. crath

    crath Well-Known Member

    Messages:
    661
    Likes Received:
    33
    Best Answers:
    0
    Trophy Points:
    100
    #5
    bump, could really use some pointers
     
    crath, Jan 24, 2009 IP
  6. justdoit1

    justdoit1 Peon

    Messages:
    100
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #6
    yes,

    must link to https:

    sure, that's it.
     
    justdoit1, Jan 25, 2009 IP
    crath likes this.
  7. crath

    crath Well-Known Member

    Messages:
    661
    Likes Received:
    33
    Best Answers:
    0
    Trophy Points:
    100
    #7
    Thanks very much!
     
    crath, Jan 25, 2009 IP
  8. justdoit1

    justdoit1 Peon

    Messages:
    100
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #8
    Don't mention it! :)
     
    justdoit1, Jan 26, 2009 IP
  9. w0tan

    w0tan Peon

    Messages:
    77
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    0
    #9
    When you send data over the internet, it can be read via sniffing packets, or even an unsecured wifi connection. Using SSL provides a good level of encryption so no one can read the information while its in transit.

    Sending the data to an email address isn't a very good choice if you want to keep the data secure, even if the form is using SSL.

    Keep it in a database, encrypt it if you can, but always use a strong and unique password for that DB and everything close to that database.
     
    w0tan, Jan 29, 2009 IP