Linux

在使用者名 linux 中使用 at 符號 (@)。安全嗎?

  • October 20, 2017

我已經閱讀了關於使用者名應該在 linux 中使用的字元,在這裡:https ://serverfault.com/a/578264/330936但我想知道如果我將使用 at 符號“@”是否有任何問題在我的使用者名中。我將特別將它用於我的 ftp 帳戶(我有一個帶有 CentOS 7 的簡單網路伺服器)。

我不想移植到其他舊版本的 linux,也不想移植到其他發行版(可能是 debian)。

在使用者名中使用有什麼問題@嗎?

我會說這不是個好主意。

我建議使用簡單的正則表達式:

([a-z_][a-z0-9_]{0,30})

檢查以下連結:

https://stackoverflow.com/questions/6949667/what-are-the-real-rules-for-linux-usernames-on-centos-6-and-rhel-6

https://unix.stackexchange.com/questions/157426/what-is-the-regex-to-validate-linux-users

在使用者名中使用“@”將無法將該使用者名用作電子郵件地址的本地部分,所以我會說這不是一個好主意。

引用自:https://serverfault.com/questions/879393