成人免费xxxxx在线视频软件_久久精品久久久_亚洲国产精品久久久_天天色天天色_亚洲人成一区_欧美一级欧美三级在线观看

linux下利用一次性口令實現安全管理

安全 網站安全
Linux服務器一直就是以穩定、高效、安全而著稱。安全是比較重要的一個環節,這關系到商業機密,更關系到企業的存亡。本文介紹了如何使用optw生成一次性口令及只允許執行特定命令。

Linux服務器一直就是以穩定、高效、安全而著稱。安全是比較重要的一個環節,這關系到商業機密,更關系到企業的存亡。本文介紹了如何使用optw生成一次性口令及只允許執行特定命令,以下為譯文:

linux下利用一次性口令實現安全管理

我想允許我的朋友登錄我的服務器下載一些資料,但是只允許他登錄10次,登陸后只允許執行scp命令,不許干別的事情,該怎么辦呢?

歸納起來,完成以下2件事情:

生成一次性口令

只允許用戶執行scp任務

實現目標1:生成一次性口令

安裝otpw

sudo apt-get install otpw-bin libpam-otpw

配置common-auth

nano /etc/pam.d/common-auth

查找以下行:

auth [success=1 default=ignore] pam_unix.so nullok_secure

在上述行上加入:

auth sufficient pam_otpw.so
session optional pam_otpw.so

用戶登錄時,首先嘗試使用一次性口令登錄,失敗后,使用正常登錄方法。

配置sshd服務

增加一個otpw配置文件:

nano /etc/pam.d/otpw

內容如下:

auth           sufficient      pam_otpw.so
session        optional        pam_otpw.so

配置sshd配置文件包含otpw配置文件:

nano /etc/pam.d/sshd

查找:

@include common-auth

在上述行上增加一行:

@include otpw

修改sshd配置文件后,確保以下3個參數設置為yes:

UsePrivilegeSeparation yes
ChallengeResponseAuthentication yes
UsePAM yes

重新啟動sshd服務

service ssh restart

這是基本的otpw配置. 確保用戶home目錄下存在文件配置文件 (~/.otpw) 的用戶才會啟用一次性口令認證. 所有其它用戶不受影響。

下列命令產生4個一次性口令:

otpw-gen -h 5 -w 64

下列命令產生10個一次性口令:

otpw-gen -h 6 -w 79

命令輸出如下:

Generating random seed ...

If your paper password list is stolen, the thief should not gain
access to your account with this information alone. Therefore, you
need to memorize and enter below a prefix password. You will have to
enter that each time directly before entering the one-time password
(on the same line).

When you log in, a 3-digit password number will be displayed.  It
identifies the one-time password on your list that you have to append
to the prefix password. If another login to your account is in progress
at the same time, several password numbers may be shown and all
corresponding passwords have to be appended after the prefix
password. Best generate a new password list when you have used up half
of the old one.

Overwrite existing password list '~/.otpw' (Y/n)?

Enter new prefix password:
Reenter prefix password:

Creating '~/.otpw'.
Generating new one-time passwords ...

OTPW list generated 2014-02-27 01:31 on kali

000 IT4U V3Bk  002 cfFE g=Gj  004 +2ML Ff92  006 kaag Ar:Y  008 VZY8 iGsp
001 9H7n aPhV  003 fcIJ zf/P  005 Qxqf OhgF  007 zPY/ QJOV  009 :N7K 3zEu

            !!! REMEMBER: Enter the PREFIX PASSWORD first !!!

SSH登錄:

login as: test
Using keyboard-interactive authentication.
Password 003:
Linux debian 3.2.0-4-686-pae #1 SMP Debian 3.2.46-1 i686
The programs included with the Debian GNU/Linux system are free software;the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.

Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
Last login: Tue Jul  9 20:03:23 2013 from 192.168.200.10
test@debian:~$

如果你的前綴口令是 "pass" 實際輸入的003號密碼是:

passfcIJ zf/P

(前綴密碼后不需要輸入空格)。

創建optw一次性口令的用戶組并添加用戶:

addgroup optw 
adduser test optw

修改文件權限:

chown root:optw /home/test/.otpw 
chmod 640 /home/test/.otpw

禁止其它用戶重置口令:

chmod 750 /usr/bin/otpw-gen

目標2.限制用戶只允許執行scp任務:

apt-get install rssh 
apt-get install scponly

2個定制的shell分別完成以下任務:

rssh限制用戶的行為 
scponly時僅有scp命令的一個shell.

現在,可以修改用戶的shell:

usermod -s /usr/sbin/scponly test 
usermod -s /usr/sbin/rssh test

And you can confiure rssh quite descent:

nano /etc/rssh.conf

Content:

# Leave these all commented out to make the default action for rssh to lock
# users out completely...
allowscp
#allowsftp
#allowcvs
#allowrdist
#allowrsync
#allowsvnserve
# if your chroot_path contains spaces, it must be quoted...
# In the following examples, the chroot_path is "/usr/local/my chroot"
user=test:011:000010:"/opt/scpspace/test chroot"  # scp with chroot

譯者注:

1、optw是linux上的一次性口令的開源實現,類似于RSA公司Secure ID功能。

2、rssh是受限的shell,提供許多實用的功能。配置簡單。

[譯自vpsboard]

責任編輯:藍雨淚 來源: FreebuF
相關推薦

2014-08-04 14:38:25

LinuxToken

2015-04-09 09:08:20

2013-04-17 09:16:37

2024-02-28 08:18:13

Java日志項目

2024-04-03 09:00:10

2022-02-23 11:22:59

漏洞黑客僵尸網絡

2021-08-12 09:48:21

Webpack Loa工具Webpack

2023-09-26 07:11:15

KubernetesJob節點

2019-08-06 09:21:45

2019-11-11 10:20:10

Linux重命名命令

2010-02-11 16:45:52

2010-11-24 16:32:50

2009-12-25 14:46:53

Windows 7文件關聯

2021-09-02 07:26:27

Django 驗證碼Framework

2022-10-17 00:07:55

Go語言標準庫

2012-09-18 15:04:31

Office 2013微軟

2015-04-16 16:33:18

網絡·安全技術周刊

2010-07-20 14:55:23

2011-04-18 13:36:42

2021-07-26 09:56:19

AI 數據人工智能
點贊
收藏

51CTO技術棧公眾號

主站蜘蛛池模板: 毛片在线看看 | 日本成人中文字幕在线观看 | 国产一区二区精品在线观看 | 午夜看片 | 99re视频精品| 国产成人精品久久二区二区91 | 亚洲欧美另类在线观看 | 国产精品特级片 | 高清视频一区二区三区 | 久久国产区 | 在线观看第一页 | 亚洲成人一区 | 久久精品一区二区 | 日韩中字幕 | 国产精品中文字幕在线观看 | 国产成人精品免高潮在线观看 | 午夜影院在线观看版 | 午夜影院在线观看 | 99免费在线视频 | 91视视频在线观看入口直接观看 | 日本网站免费观看 | 国产视频精品视频 | 日本天天操 | 精品视频一二区 | 亚洲色图综合 | 欧美精品三区 | 国产欧美一区二区三区国产幕精品 | 日本久久一区二区三区 | 91精品国产色综合久久 | 老牛影视av一区二区在线观看 | 久草.com | 日韩在线观看一区 | 日韩成人精品 | 美日韩免费视频 | 国产欧美综合在线 | 国产高清自拍视频在线观看 | 自拍偷拍中文字幕 | 97精品一区二区 | 91 在线 | 欧美视频在线播放 | 国产精品色哟哟网站 |