Credential Access
High
- Category
- Privilege Escalation
- Content
# ==================== Authentication ==================== def _get_access_token(self) -> str: """Get or refresh access token""" if self._access_token and time.time() < self._token_expires_at: return self._access_token- Confidence
- 70% confidence
- Finding
- Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.
