Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
1 Ответить
5904 Представления

As a developer it is advisable to check and restrict the users from entering special characters like <,>,*,%,' etc to avoid sql injections.

But in the modules of Odoo i do not find any kind of restriction for those. So is it really not necessary to write any code for that and assume that Odoo handles the sql injection characters by itself !

Can anyone suggest anything regarding this as i am a beginner.


Аватар
Отменить
Лучший ответ

Secure by design

Odoo is designed in a way that prevents introducing most common security vulnerabilities:

  • SQL injections are prevented by the use of a higher-level API that does not require manual SQL queries

  • XSS attacks are prevented by the use of a high-level templating system that automatically escapes injected data 

  • The framework prevents RPC access to private methods, making it harder to introduce exploitable vulnerabilities

Reffernce link : https://www.odoo.com/security


Аватар
Отменить
Related Posts Ответы Просмотры Активность
2
мар. 15
8223
1
янв. 22
2644
1
дек. 19
3597
2
июн. 18
11325
1
мая 17
10971