Currently, the link sharing system uses simple number based indexing to access models from the db. This has a minor security issue because all user created models can be trivially retrieved by just iterating from all numbers from 1 to the currrent counter by changing the id parameter in the URL.
http://fabrik.cloudcv.org/load?id=2
Ideally, you would want to create a random string that is at least 12 characters long in order to make this completely secure. Shouldn't be too hard to implement.
Currently, the link sharing system uses simple number based indexing to access models from the db. This has a minor security issue because all user created models can be trivially retrieved by just iterating from all numbers from 1 to
the currrent counter
by changing the id parameter in the URL.http://fabrik.cloudcv.org/load?id=2
Ideally, you would want to create a random string that is at least 12 characters long in order to make this completely secure. Shouldn't be too hard to implement.