Reputation: 291
I have a form on a SSL secured website that contains credit card number and its type (no CCV nor the expiration date). When the user submits the form, an email is sent to the management with all the submitted information. Nothing is stored in the database in the process.
Do I need to do anything else besides securing the website with HTTPS?
Thanks!
Upvotes: 1
Views: 146
Reputation: 3369
If you are submitting any credit card information then the answer is yes! Sending a credit card in an email is a huge no-no!
I recommend taking this offline immediately, and destroy all emails ASAP. Then go and read the PCI compliance documentation, and/or consider using a PCI compliant payment interface such as authorize.net for example.
Upvotes: 2
Reputation: 182769
Since you accept credit card information, you must be PCI compliant.
From the FAQ:
Q: To whom does PCI apply?
A: PCI applies to ANY organization or merchant, regardless of size or number of transactions, that accepts, transmits or stores any cardholder data. Said another way, if any customer of that organization ever pays the merchant directly using a credit card or debit card, then the PCI DSS requirements apply.
Q: How do I report an organization for violating PCI?
A: Businesses that are found to be out of compliance with PCI may be subject to fines by the entity they use to process their credit card transactions. Businesses that have a data breach where credit card data is actually stolen will be subject to much larger fines and fees from the banks, card brands, etc., and are required to report the breach, which quickly makes the news and causes further reputational damage.
And also this:
Q: Am I PCI compliant if I have an SSL certificate?
A: No. SSL certificates do not secure a Web server from malicious attacks or intrusions.
Upvotes: 2