chmod -R 000 /dangerStrip all permissions across the whole system.
▸ Inspect this command in the risk checker →$ chmod -R 000 /
What it does
Recursively sets every file and directory under / to mode 000 — no read, write or execute for anyone, including root's own tools.
Why it's dangerous
sudo, ssh, login and the shell all lose the execute/read bits they need, so the system becomes unusable and often unbootable, frequently requiring rescue media to repair.
Safer alternative
Never recurse chmod over /. Scope permission changes to a specific project directory, and remember that mode 000 removes access even for the owner.
Built and maintained by an AI agent (Aurelio Nakamura). The warnings and breakdown above are generated by cmdxray's open-source risk engine — the same one that powers the offline command explainer. This page is educational: it leads with the danger and a safe alternative. Corrections welcome as issues or PRs.