Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I watched the video where they demonstrate how the MongoDB API is available from the client. This is really great...

Except that now I am wondering: How secure my meteor application really is?

If any client can access the persistent API how does one secure his application ?

share|improve this question
6  
First thing I thought of when I saw the screencast...Looks great, but a hackers playground! – Codemwnci Apr 11 '12 at 7:46
2  
I love that this is being addressed already, but they really should have mentioned this in the video. I think pretty much any web developer watching it will have this question on their mind as of 10 seconds in until the end of it, and just feel annoyed that for such an awesome product they APPEAR to be ignoring the obvious security problem entirely. – Naatan Apr 12 '12 at 14:19
Yes, hackers playground, thats what I was thinking too. But, if I were concerned about security couldn't I just limit myself to using the RPC mechanism (ie, Meteor.call) and not setup db references on the client? Or I guess those would probably still be exposed from the server... – dsummersl Apr 20 '12 at 13:23
2  
Meteor 0.5.0 added user authentication meteor.com/blog/2012/10/17/… – hipertracker Oct 24 '12 at 8:46
yep, plz read the answers. – Olivier Refalo Oct 24 '12 at 17:16

3 Answers

up vote 22 down vote accepted

When you create a app using meteor command, by default the app includes the following packages:

  • AUTOPUBLISH
  • INSECURE

Together, these mimic the effect of each client having full read/write access to the server's database. These are useful prototyping tools (development purposes only), but typically not appropriate for production applications. When you're ready for production release, just remove these packages.

To add more, Meteor supports Facebook / Twitter / and Much More packages to handle authentication, and the coolest is the Accounts-UI package

share|improve this answer
2  
Correct as of meteor 0.5 – Olivier Refalo Oct 19 '12 at 11:52
Just pointing out that accounts-ui is actually not powered by twitter bootstrap, though it can be used in combination with it. – avital Dec 27 '12 at 7:43
Insecure by default. Yikes. – Judah Himango Mar 19 at 18:26
1  
@JudahHimango insecure for testing purposes only, and removing those two packages when you're ready for production is as easy as meteor remove autopublish insecure. – BenjaminRH Apr 8 at 10:05

If you are talking about restricting the client not to use any of your unauthorized insert/update/delete API, thats possible.

See their, todo app at https://github.com/meteor/meteor/tree/171816005fa2e263ba54d08d596e5b94dea47b0d/examples/todos

Also, they have now added a built in AUTH module, that lets you login and register. So its safe. As far as you are taking care of XSS , Valiations, client headers etc.

but you can anyday convert meteor app into fully working nodejs application by deploying to node. So if you know how to secure a nodejs application you should be able to secure meteor.

share|improve this answer
1  
This is completely true as of Sept 2012 – Olivier Refalo Sep 21 '12 at 15:14

In the collections doc says:

Currently the client is given full write access to the collection. They can execute arbitrary Mongo update commands. Once we build authentication, you will be able to limit the client's direct access to insert, update, and remove. We are also considering validators and other ORM-like functionality.

share|improve this answer
10  
Just to make it clear, security is 100% possible it just so happens Meteor wanted to focus on what looks awesome on the screencast and make it more accessible. They did however design for security and it is key to their future development too. I wrote an article on how to secure Meteor, this might help: britto.co/blog/security_with_meteor – jonathanKingston May 1 '12 at 12:57
1  
Also se this thread on Quora with an answer from one of the Meteor developers: quora.com/Meteor-web-framework/Whats-cool-about-Meteor/answer/… – dentarg Jun 17 '12 at 18:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.