The vulnerability stems from missing input validation in form request classes. The commit diff shows the addition of 'max:500' validators to first_name, last_name, phone, username, and email fields in both UserCreateRequest and UserUpdateRequest. Before this fix, the absence of length restrictions allowed attackers to submit arbitrarily large values. While the CWE-190 classification suggests an integer overflow/wraparound, the direct vulnerable components are the validation rules that failed to constrain input size, which would be consumed by downstream processing functions (not explicitly shown in diffs) that might perform unsafe arithmetic operations on these unchecked input lengths.