is there a common pattern in Java to avoid mongoDB injection attacks?
Thanks
|
|
Use one of the supported drivers. Don't deserialize strings as JSON and pass them as queries, e.g. dont' do this (in Ruby):
where Since there's no query language as such there's not the same room for injection. Part of the reason that SQL injection attacks are possible is that the action to take ( |
|||
|
|
|
You can build MongoDB querys with Javascript in the where clause and here injection can happen. Here explanation how to prevent this: http://www.mongodb.org/display/DOCS/Do+I+Have+to+Worry+About+SQL+Injection |
|||
|
|
|
Most of the drivers are setup where you construct queries as the languages representation of BSON documents. What languages do you intend to use mongo in? |
|||
|
|
|
yes there is, by using regex search. Ex: lets say you do check by username and you are not using EQ op. If i pass [a-z] for example i will bypass your login action :). But anyway, it very much depends on the logic of how things are implemented in the solution. |
|||
|
|