Pretty shocking error -All of your users could be operating illegally
-
This plugin explicitly states that it does not send information to your server, and instead sends directly to Stripe as prescribed in the stripe documentation – great. Except it doesn’t.
This means most if not all of your 3000+ users are unwittingly violating PCI Compliance (assuming they are not already verified and accept card data in other forms).I inspected using chrome development tools and the following items are ‘named’, thus hit your server (whether they are stored or not is not important, you need to be PCI Compliant to even receive the information).
The list of vulnerable data:
1. name=”stripe-card-number”
2. name=”stripe-card-expiry”
3. name=”stripe-card-cvc”This is in direct contradiction to the Stripe docs that say DO NOT put a ‘name’ attribute on the html elements.
You should check the docs here: https://stripe.com/docs/tutorials/forms – it uses ‘data-stripe’ attributes to prevent the form information from being submitted to your server.
- The topic ‘Pretty shocking error -All of your users could be operating illegally’ is closed to new replies.