The Context:
- You have a web server which has to provide an exclusive content only if your client has your specific Chrome extension installed.
- You have two possibilities to provide the Chrome extension package:
- From the Chrome Web Store
- From your own server
The problem:
- There is a plethora of solutions allowing to know that a Chrome extension is installed:
- Inserting an element when a web page is loaded by using Content Scripts.
- Sending specific headers to the server by using Web Requests.
- Etc.
- But there seems to be no solution to check if the Chrome extension which is interacting with your web page is genuine.
- Indeed, as the source code of the Chrome extension can be viewed and copied by anyone who want to, there seems to be no way to know if the current Chrome extension interacting with your web page is the one you have published or a cloned version (and maybe somewhat altered) by another person.
- It seems that you are only able to know that some Chrome extension is interacting with your web page in an "expected way" but you cannot verify its authenticity.
The solution?
- One solution may consist in using information contained in the Chrome extension package and which cannot be altered or copied by anyone else:
- Sending the Chrome extension's ID to the server? But how?
- The ID has to be sent by you and your JavaScript code and there seems to be no way to do it with an "internal" Chrome function.
- So if someone else just send the same ID to your server (some kind of Chrome extension's ID spoofing) then your server will consider his Chrome extension as a genuine one!
- Using the private key which served when you packaged the application? But how?
- There seems to be no way to access or use in any way this key programmatically!
- Sending the Chrome extension's ID to the server? But how?
- One other solution my consist in using NPAPI Plugins and embed authentication methods like GPG, etc. But this solution is not desirable mostly because of the big "Warning" section of its API's doc.
- Is there any other solution?
Notes
This question attempts to raise a real security problem in the Chrome extension's API: How to check the authenticity of your Chrome extension when it comes to interact with your services. If there are any missing possibilities, or any misunderstandings please feel free to ask me in comments.
one you have published or a copied one by another person" -- do you mean an exact duplicate (i.e. filesystem-copy) or a software clone? – apsillers Sep 17 '12 at 13:42