Security implications of injection in api http request from frontend?
In my frontend I have something like this:
article = httpLibrary.get(‘api.mysite.com/articles/’ + articleId);
Where articleId is taken from a URL query parameter (it’s injectable).
Is this exploitable in any way?
I was … Continue reading Security implications of injection in api http request from frontend?