Reputation: 3307
I am building a Chrome Extension that will call my backend APIs to validate something. I would like to know is it possible that other people could build some Chrome Extensions to manipulate the request and response to compromise the validation process? For example:
API: https://my-domain.com/validation
request:
{
"key": "aaaa-bbbb-cccc-dddd"
}
response:
{
"status": "IN_VALID_KEY"
}
Would someone is able to build a Chrome Extension to monitor requests on https://my-domain.com/validation and change the response to be
{
"status": "VALID"
}
Could that happen?
Upvotes: 0
Views: 51