Dynamic attribute access via getattr()
Low
- Category
- Dangerous Code Execution
- Content
params[key] = cleaned for field in FIELDS: value = clean_value(getattr(args, field)) if value is not None: params[field] = value- Confidence
- 50% confidence
- Finding
- Dynamic getattr() with a non-literal attribute name can access arbitrary object attributes, potentially bypassing access controls.
