Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm looking for a good standalone Python template engine that is safe, against code injecting, to be used in an application that allows untrusted users to write and edit templates. Could someone recommend such an engine?

share|improve this question
You maybe can have a look to jinja jinja.pocoo.org – starcorn Apr 12 '12 at 22:40
1  
Giving untrusted users access to the site's templates sounds scary. – ayanami Apr 12 '12 at 22:46
Part of this depends on what variables/namespaces you are including/making available in your view context that you feed to the templates. For example it would be dangerous if you make something like os available (either directly or implicitly accessible via some other module or variable that imports it) – Preet Kukreti Apr 13 '12 at 3:47

1 Answer

starcom referenced jinja.

The jinja website says, under "features":

Sandboxed execution mode. Every aspect of the template execution is monitored and explicitly whitelisted or blacklisted, whatever is preferred. This makes it possible to execute untrusted templates.

share|improve this answer

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.