About Security and Privacy

It's really important that you make sure that your app is secure and protects the user’s privacy. We’ll go over the basics below.

Verify the user’s identity

  1. When Wix calls your app endpoint, check (on the server side) that the signature was signed by Wix. Here’s how to do that (you can also check out these parsing examples):
  • Take the data part of the instance parameter and sign it using your secret key. 
  • Use base64url to decode the signature sent by Wix. 
  • Make sure value of the signed instance parameter (from step a) equals the value of the decoded signature (from step b). If these values don’t match, then don’t display your app – show an error instead.

2. When Wix calls your app settings or internal dashboard component, check (on the server side) that the value of the permission property in the signed instance is ‘OWNER’. If it isn’t, display a ‘permission denied’ message instead of the app settings or dashboard content.

3. For each save action performed in the app settings or internal dashboard component:

  • Make sure you include the signed-instance parameter in the request.
  • Before you save the changes, validate that this instance exists and that its value is the same as in the original request (when the user first opened the app settings or dashboard component).
  • Check the signDate – if the date of the signature is older than a day, you should display a message saying ‘Please refresh to continue editing your App’.

Support HTTPS

We support HTTPS in the Wix Dashboard, Wix Editor, and live sites, so make sure your app supports HTTPS in all endpoints.

Here are a few pointers to get you started:

  • Install an SSL certificate on your servers. (You can check out Let’s Encrypt, a free and easy to use SSL certificate authority).
  • Verify that all links in your app use HTTPS – links to pages, images, JavaScript, CSS, etc.
  • Make sure all content in your app supports HTTPS, including third-party content like statistics and CDNs.

Prevent XSS attacks

Make sure that no one can enter malicious code anywhere in your app.

Check your app’s internal dashboard, settings panel, and website component for all input fields where users/site visitors can enter text. (For example: comment fields, forms, search fields, title/descriptions fields, etc.)

Keep data secure

Encrypt all sensitive data, and don’t store sensitive data in cookies.

Make payment settings private

Do users enter sensitive data, such payment info, in your app? Show it to site owners only – and hide it from contributors.

  • Site owners create and own the site.
  • Contributors are invited by the site owners to edit and manage an existing website. Contributors have access to all apps on the site.

What this means for you:

  1. Check who’s logged in: When Wix calls your endpoint, check the app instance to see if the user ID (uid) is the same as the owner ID (siteOwnerId).
  2. If it’s the site owner, show your endpoint as is: You’ll know it’s the site owner if the uid is the same as the siteOwnerId.
  3. If it’s a contributor, block payment settings: You’ll know it’s a contributor if the uid is different from the siteOwnerId. Here’s what to show in the App Settings panel and internal Dashboard component.

Tip: Ready to test your app? Make sure to check your app as a site owner and as a contributor.

Protect users’ data

Since the EU rolled out their data protection regulation known as GDPR, users may contact you about accessing, changing, or deleting any personal data your app stores about users or site visitors.

You can handle each request manually as it comes in, or you can develop a faster way to handle these requests automatically. We suggest learning more about GDPR so that you can understand how it affects your app.

If a Wix user (who is both the site owner and an EU citizen) contacts you about their personal data, here’s what we suggest:

  1. Ask them to provide details as proof of identity: this is needed to protect their security.
  2. Let users know you’re processing their request: send an email to let users know you’re handling their request.
  3. Complete their request as soon as possible: Once you’ve proven the user’s identity, we suggesting handling their request as follows:
    1. If users request to edit or delete their personal data, comply without undue delay. We suggest completing this request within a week (but no more than 30 days).
    2. If users request to access their personal data, send it within 30 days. Always send data to the same email/channel that the user reached out to you in. 

Secure passwords

Does your app ask users to register/connect an account? Keep users’ passwords secure and confidential, as follows:

  • Use a trusted password hashing function: Passwords must be hashed with a secure hashing function such as SHA-256 or bcrypt. Storing raw passwords is a violation of the GDPR.
  • Add a long, unique random salt or nonce to each password you store: By making each password unique and long enough,  you limit the chances of brute-force attacks (when an attacker tries to guess the password or password key).
  • Handle forgotten passwords securely. Here’s how:
    • Send an email with a reset link so the user can change their password. Don’t send the raw password in an email.
    • Set reset links to expire within 1-2 hours.
    • Make sure the endpoint used for reset links is protected from brute-force attacks.
Was this helpful?
Yes
No