Insecure Direct Object References (IDOR)
Identifying IDORs
URL Parameters & APIs
AJAX Calls
function changeUserPassword() {
$.ajax({
url:"change_password.php",
type: "post",
dataType: "json",
data: {uid: user.uid, password: user.password, is_admin: is_admin},
success:function(result){
//
}
});
}Understand Hashing/Encoding
Compare User Roles
Last updated