web-dev-qa-db-ja.com

sudoなしでルート所有ファイルを削除する方法

ls -lFhの出力は次のとおりです。

-rw-r--r-- 1 hjpotter92 hjpotter92  926 Aug  2 18:40 static.yaml
drwxr-xr-x 5 hjpotter92 hjpotter92 4.0K Sep 12 19:40 templates/
-rw-r--r-- 1 root       root       1.5K Sep 12 20:09 xyz

hjpotter92としてログインしています。ユーザーのNOPASSWDリストにsudoersエントリがありません。私が以下を試したときの誰かがその行動を説明できますか:

$ which rm
rm: aliased to rm -i
$ rm xyz
rm: remove write-protected regular file 'xyz'? y
$ Sudo rm xyz
rm: cannot remove 'xyz': No such file or directory
$ ls -lFh
total 176K
<a lot of other files>
-rw-r--r-- 1 hjpotter92 hjpotter92  926 Aug  2 18:40 static.yaml
drwxr-xr-x 5 hjpotter92 hjpotter92 4.0K Sep 12 19:40 templates/
7
hjpotter92

この場合、ファイルがあったディレクトリに重要な書き込み権限があります。したがって、ディレクトリを書き込むことができれば、そこにあるファイルを削除することもできます。

14
Jaroslav Kucera