gemini

Fail

Audited by Runlayer on Feb 26, 2026

Risk Level: HIGH
Scan Summary
Max Score
91%
Files
2
Flagged
2
Chunks
4
Flagged Files (2)
gemini/README.mdHIGH
90.7%

Tool passed security scan

Malicious tool definition detected

**Permission issues**: Asks user before using high-impact flags ## Troubleshooting ### Process Hung in Background **Detection**: ```bash ps aux | grep -E "gemini.*gemini-3" | grep -v grep # Look for: 20+ min runtime, 0% CPU, state 'S' ``` **Resolution**: ```bash pkill -9 -f "gemini.*gemini-3-pro-preview" ``` **Prevention**: Always use `--approval-mode yolo` for background tasks ### No Output After Long Time Check if process is waiting for approval: ```bash ps -o pid,etime,pcpu,stat,command -p <P

gemini/SKILL.mdMEDIUM
81.7%

Tool passed security scan

Malicious tool definition detected

## Troubleshooting Hung Gemini Processes ### Detection ```bash # Check for hung processes ps aux | grep -E "gemini.*gemini-3" | grep -v grep # Look for these symptoms: # - Process running 20+ minutes # - CPU usage at 0% # - Process state 'S' (sleeping) # - No network connections ``` ### Diagnosis ```bash # Get detailed process info ps -o pid,etime,pcpu,stat,command -p <PID> # Check network activity lsof -p <PID> 2>/dev/null | grep -E "(TCP|ESTABLISHED)" | wc -l # If result is 0, process is hung

Audit Metadata
Max File Score
91%
Classification
KNOWN_SERVER_ALL_UNKNOWN
Files Scanned
2
Files Flagged
2
Chunks Analyzed
4
Analyzed
Feb 26, 2026, 05:28 PM
Security Audit — runlayer — gemini