그룹 또는 전체 쓰기 가능 디렉터리

그룹 또는 전체 쓰기 가능 디렉터리

스크립트를 사용해 보았지만 다음 오류가 발생했습니다.

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해당 명령을 소유한 사용자만 읽고, 쓰고, 실행할 수 있습니다. 아마도 다른 사용자가 개인 인증서가 저장된 디렉토리에 대한 읽기 액세스 권한을 갖는 것을 원하지 않을 것입니다.

관련 정보