While working on $http.post requests for my app's backend, I noticed a security issue. When inspecting the data using tools like firebug in Firefox, I can see all the information being sent.
Is it possible for third parties to intercept this data? The thought of someone capturing passwords during account registration is troubling.
Is there a way to add extra security to my AngularJS front-end to prevent data theft from POST requests?
Any guidance on this matter would be greatly valued :)