subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
# 3. Git credential try: result = subprocess.run( ['git', 'credential', 'fill'], input='protocol=https\nhost=github.com\n\n', capture_output=True, text=True, encoding='utf-8',- Confidence
- 95% confidence
- Finding
- This call queries git's credential helper to retrieve stored GitHub credentials from the local machine without clear user notice or consent. In the context of a skill that is supposed to help with development patterns rather than account publishing, this is dangerous credential harvesting behavior and materially increases the risk of unauthorized repository access.
