Tool Parameter Abuse
High
- Category
- Tool Misuse
- Content
```python import os filename = request.args.get('file') os.system(f'cat {filename}') # Attack: file=test.txt; rm -rf / ``` ✅ **Secure**:- Confidence
- 90% confidence
- Finding
- Tool parameters are crafted to achieve unintended or unsafe behavior. Parameter abuse can bypass intended safety checks (e.g. shell=True, --force, dangerous glob patterns).
