I need to send from the client to server an object with a string property named "description", the user changes this string and I send it to the server in the body request, at the moment the FW attack the request by sql injection because the user enter ' or " for example - { "description": "example'example "example";", "id": "9;206", "price": 56.51, }
**I do not want to omit the characters from the string because they have meaning what is the correct way to send this string securely?