グループまたは完全書き込み可能ディレクトリ

グループまたは完全書き込み可能ディレクトリ

スクリプトを試しましたが、次のエラーが発生しました。

Directory is group or world writeable.
This is insecure, since any malicious user can trick you to write
newly generated private key into his file. Please, restrict directory
rights to permit directory writes only to yourself or choose another
directory.

どうすれば解決できますか?

ベストアンサー1

chmod 0700 /path/to/directory

コマンドは、directoryそのコマンドを所有しているユーザーのみを読み取り、書き込み、および実行できます。おそらく、他のユーザーが個人証明書が格納されているディレクトリへの読み取りアクセス権を持っていることを望まないでしょう。

おすすめ記事