PHP - Abuse PHP Type Juggling
Type Juggling is a feature of PHP that automatically converts between different data types during comparison and arithmetic operations. It simplifies data comparison but introduces potential security risks, especially if the user input is not properly validated or sanitized.
Here we found how this can be exploited:
Imagine we caught a petition from a login page that sends the username and password values as parameters
We could modify the petition to change the data type of the parameters
Last updated
Was this helpful?