python3 -c "import os; os.unlink('~/.bashrc')"
Don't let the perfect be the enemy of the good, there is a lot of space between running agents directly on your system and an environment too locked down or sophisticated to realistically maintain.
allowlist and denylist (or blocklist)
Everyone is in a mood, after entertaining the terror that comes with deploying unsupervised super-potent Agents, the year of living dangerously.
I for one appreciate having my consciousness raised in the middle of all this, reminding me of the importance of other humans' experiences.
Or, were you tongue-in-cheek, just yanking chains, rattling cages?
In either case: Keep up the good work.
mv ~/. /dev/null
Better.
Extra points if you achieve that one also:
mv /. /dev/null
Slashdot aficionados might object to that last one, though.
mv /bin/laden /dev/null
and then someone explained how that was broken: even if that succeeds, what you've done is to replace the device file /dev/null with the regular file that was previously at /bin/laden, and then whenever other things redirect their output to /dev/null they'll be overwriting this random file than having output be discarded immediately, which is moderately bad.
Your version will just fail (even assuming root) because mv won't let you replace a file with a directory.
EDIT: OH MY GOD
I assume yes.