版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡介
1、安裝一臺(tái)安全的Linux何偉平hwtonyxmubbsLinux的優(yōu)點(diǎn)Linux花費(fèi)小,硬件要求低開放源碼相對(duì)安全Linux的缺點(diǎn)學(xué)習(xí)成本高缺少技術(shù)支持特定服務(wù)無法滿足要求選擇依據(jù)根據(jù)應(yīng)用選擇操作系統(tǒng)利用linux為老機(jī)器延長壽命安全概述防范誰(天災(zāi)、病毒、人)需要什么樣的措施授予最小的權(quán)限安裝要點(diǎn)避免連接網(wǎng)絡(luò)慎重規(guī)劃文件系統(tǒng)僅安裝必要程序規(guī)劃文件系統(tǒng)選用日志文件系統(tǒng)獨(dú)立/var、/home、/boot獨(dú)立/usr、/tmp安裝最小的操作系統(tǒng)安裝時(shí)選擇Minimal物理安全限制啟動(dòng)方式保護(hù)控制臺(tái)限制啟動(dòng)方式更改啟動(dòng)順序加上BIOS密碼加上Loader密碼給GRUB加上密碼獲得加密串grub m
2、d5cryptPassword: *Encrypted: $1$qW/qn0$LOnxgnJ2eyQupw2i7aTtS1編輯/boot/grub/grub.conf,加入password -md5 $1$b.0qn0$X7vUSPBqlznCPHzQQJJQ51保護(hù)控制臺(tái) 禁用ctrl+alt+del編輯/etc/inittab注釋掉如下配置ca:ctrlaltdel:/sbin/shutdown -t3 -r now保護(hù)控制臺(tái) 禁用程序執(zhí)行以下命令rm f /etc/security/console.apps/haltrm f /etc/security/console.apps/rebo
3、otrm f /etc/security/console.apps/powerofffor i in /etc/pam.d/* do sed /#.*pam_console.so/s/#/ temp & mv f temp $i done帳戶安全刪除不必要帳戶限制帳戶權(quán)限保護(hù)超級(jí)管理員帳戶刪除不必要的帳戶用以下命令查看用戶cat /etc/passwd| cut -f 1-1 -d: -刪除adm、lp、sync、shutdown、halt、news、mail、uucp、operator、games、gopher、ftp刪除不必要的組用以下命令查看用戶cat /etc/group| cut -
4、f 1-1 -d: -刪除adm、lp、news、mail、uucp、games、dip限制帳戶權(quán)限允許登陸?usermod -s /sbin/nologin username登陸方式,位置?避免創(chuàng)建默認(rèn)組保護(hù)超級(jí)管理員帳戶編輯/etc/profile,加入TMOUT=600編輯/etc/pam.d/su,去掉下面的注釋#auth required /lib/security/$ISA/pam_wheel.so use_uid文件安全避免不必要的文件權(quán)限保護(hù)重要文件注意SUID程序避免不必要的文件權(quán)限修改fstab/var、/tmp加上noexec、nosuid、nodev/home加上nos
5、uid、nodev保護(hù)重要的文件chattr i/etc/services/etc/passwd/etc/shadow/etc/group/etc/gshadow去掉不必要的SUID查找SUID程序find / -type f ( -perm -04000 -o -perm -02000 )去掉權(quán)限chmod a-s /bin/mount網(wǎng)絡(luò)安全配置防火墻刪除不必要的服務(wù)設(shè)置內(nèi)核參數(shù)IPTABLES (1)# export INET_IP=xxx.xxx.xxx.xxx # iptables -N bad_tcp_packets# iptables -N allowed# iptables -
6、A bad_tcp_packets -p tcp -tcp-flags SYN,ACK SYN,ACK -m state -state NEW -j REJECT -reject-with tcp-reset # iptables -A bad_tcp_packets -p tcp ! -syn -m state -state NEW -j DROP # iptables -A allowed -p TCP -syn -j ACCEPT # iptables -A allowed -p TCP -m state -state ESTABLISHED,RELATED -j ACCEPT # ip
7、tables -A allowed -p TCP -j DROP IPTABLES (2)# iptables -A INPUT -p tcp -j bad_tcp_packets # iptables -A INPUT -p ALL -i lo -s -j ACCEPT # iptables -A INPUT -p ALL -i lo -s $INET_IP -j ACCEPT # iptables -A INPUT -p ALL -d $INET_IP -m state -state ESTABLISHED,RELATED -j ACCEPT # iptables -A OUTPUT -p
8、 tcp -j bad_tcp_packets# iptables -A OUTPUT -p ALL -o lo -d -j ACCEPT# iptables -A OUTPUT -p ALL -o lo -d $INET_IP -j ACCEPT# iptables -A OUTPUT -p ALL -s $INET_IP -m state -state ESTABLISHED,RELATED -j ACCEPT IPTABLES (3)# iptables -A INPUT -p TCP -dport 22 -j allowed # iptables -A OUTPUT -p UDP -d
9、port 53 -j ACCEPT# iptables -A OUTPUT -p TCP -dport 53 -j allowed# iptables -A OUTPUT -p TCP -dport 21 -j allowed # iptables -P INPUT DROP# iptables -P OUTPUT DROP# iptables -P FORWARD DROP # service iptables save TCP_WRAPPERS/etc/hosts.denyALL:ALL/etc/hosts.allow,用ipsshd:xxx.xxx.xxx.xxx刪除不必要的服務(wù)chkc
10、onfig listchkconfig level 3 servicename off手工編輯/etc/rc.d/rc3.d設(shè)置內(nèi)核參數(shù)/etc/sysctl.confnet.ipv4.icmp_echo_ignore_all = 1net.ipv4.icmp_echo_ignore_broadcasts = 1net.ipv4.conf.all.accept_source_route = 0net.ipv4.tcp_syncookies = 1net.ipv4.conf.all.accept_redirects = 0net.ipv4.ip_always_defrag = 1net.ipv4.icmp_ignore_bogus_error_responses = 1net.ipv4.conf.all.rp_filter = 1net.ipv4.conf.all.log_martians = 1安全相關(guān)Security Through Obscurity(不公開、即安全)日志&備份升級(jí)Sec
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 威海市市級(jí)名校2025屆初中生物畢業(yè)考試模擬沖刺卷含解析
- 《真核微生物酵母菌》課件
- 西藏昌都地區(qū)(2024年-2025年小學(xué)六年級(jí)語文)部編版期中考試((上下)學(xué)期)試卷及答案
- 城市露天讀書節(jié)贊助合同(2篇)
- 海上攝影光船租賃合同范本
- 住房公積金購房政策變動(dòng)趨勢(shì)
- 旅游業(yè)務(wù)合同管理流程
- 乳制品配送貨車租賃合同樣本
- 2024泰州數(shù)字經(jīng)濟(jì)產(chǎn)業(yè)員工勞動(dòng)合同模板3篇
- 高速公路綠化帶圍墻施工合作合同
- 地渣土清運(yùn)項(xiàng)目投標(biāo)方案(技術(shù)標(biāo))
- 交通刮蹭私了協(xié)議書范本
- 青少年人工智能編程水平測(cè)試一級(jí)-模擬真題01含答案
- 院內(nèi)2期及以上壓力性損傷的管理與持續(xù)改進(jìn)
- 中考名著《駱駝祥子》測(cè)試題及答案
- 高中體育課程活動(dòng)方案
- 小學(xué)中高年段語文學(xué)科基于課程標(biāo)準(zhǔn)評(píng)價(jià)指南
- 和解協(xié)議裝修合同糾紛
- 跆拳道專業(yè)隊(duì)訓(xùn)練計(jì)劃書
- 實(shí)景三維地理信息元數(shù)據(jù)規(guī)范
- 意識(shí)障礙的判斷及護(hù)理
評(píng)論
0/150
提交評(píng)論