主頁 > 知識(shí)庫 > linux系統(tǒng)中的列出敏感用戶的腳本代碼

linux系統(tǒng)中的列出敏感用戶的腳本代碼

熱門標(biāo)簽:陜西電銷卡外呼系統(tǒng)怎么安裝 旅游地圖標(biāo)注大全 杭州機(jī)器人外呼系統(tǒng) 百度地圖標(biāo)注圖標(biāo)更換 東莞電銷機(jī)器人價(jià)格一覽表 佛山高德地圖標(biāo)注中心 excel地址地圖標(biāo)注 百度地圖的地圖標(biāo)注 地圖標(biāo)注超出范圍怎么辦

此處的敏感用戶是指這個(gè)用戶屬于多個(gè)組,或者這個(gè)用戶屬于的組名跟這個(gè)用戶名不一樣

#! /bin/bash 
#list user who belong to more than one group 
#and list user who belong to the group which isn't the same as the username 
#w is whitelist,we will not think user in this whitelist is special or dangerous w=("root" "adm" "games" "operator" "halt" "shutdown" "sync" "daemon" "bin" "operator") function WhiteList() 
{ 
    for i in ${w[@]} 
    do
        if [ "$i" == "$1" ];then
            return 1 
        fi
    done
    return 0 
} 
IFS=" 
" for LINE in `cat /etc/passwd|awk -F: '{print $1}'` do
    WhiteList $LINE; 
    #if $? equal 1,means it is in the whitelist     if [ $? -eq 0 ];then
        a=`groups $LINE|awk -F: '{print $2}'` 
        b=`echo $a` 
        if [ "$b" != "$LINE" ];then
            #echo $LINE             echo `groups $LINE` 
        fi
    fi done

標(biāo)簽:通遼 隨州 朝陽 雅安 延邊 青島 西藏 南充

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《linux系統(tǒng)中的列出敏感用戶的腳本代碼》,本文關(guān)鍵詞  linux,系統(tǒng),中的,列出,敏感,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《linux系統(tǒng)中的列出敏感用戶的腳本代碼》相關(guān)的同類信息!
  • 本頁收集關(guān)于linux系統(tǒng)中的列出敏感用戶的腳本代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章