Sudo/Root Execution
Medium
- Category
- Privilege Escalation
- Content
| Cryptic Error | Plain Translation | Common Fix | |---|---|---| | `ENOENT: no such file or directory` | File or directory doesn't exist at that path | Check the path — typo? Missing directory? Relative vs absolute? | | `EACCES: permission denied` | You don't have permission to access this | Check file permissions, check if you need sudo/admin | | `EADDRINUSE: address already in use` | Another process is already using that port | Kill the other process or use a different port | | `ENOMEM: not enough memory` | System is out of memory | Check for memory leaks, increase available memory, or reduce consumption | | `ETIMEDOUT: connection timed out` | The remote host didn't respond in time | Check network, check if the service is running, check firewall |
- Confidence
- 50% confidence
- Finding
- Commands invoke sudo or root privileges. Verify this elevated access is necessary and justified.
