系统提权-机密信息搜集

什么用户,哪个用户登录,还有哪些用户,他们能做什么

  • id
  • who
  • whoami
  • w
  • last
  • cat /etc/passwd |cut -d: -f1 列出所有用户
  • grep -v -e "^#" /etc/passwd | awk -F: '3 == 0 {print1}' 列出超级用户
  • awk -F: '($3 == "0") {print}' /etc/passwd 列出超级用户
  • cat /etc/sudoers
  • sudo -l

能否找到一些敏感信息

  • cat /etc/passwd
  • cat /etc/group
  • cat /etc/shadow
  • ls -alh /var/mail/

查看家目录是否含有,有价值的信息

  • ls -alhR /root/
  • ls -alhR /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
  • ls -aRl /etc/ | awk '$1 ~ /^..w/' 2>/dev/null
  • ls -aRl /etc/ | awk '$1 ~ /^.....w/' 2>/dev/null
  • ls -aRl /etc/ | awk '1 ~ /w./' 2>/dev/null
  • find /etc/ -readable -type f 2>/dev/null
  • find /etc/ -readable -type f -maxdepth 1 2>/dev/null

查看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

所有web站点下是否含有隐藏文件

  • 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/

Note: auth.log, boot, btmp, daemon.log, debug, dmesg, kern.log, mail.info, mail.log, mail.warn, messages, syslog, udev, wtmp
https://www.thegeekstuff.com/2011/08/linux-var-log-files/

当所在的shell被限制了可以跳出此限制

  • python -c 'import pty;pty.spawn("/bin/bash")'
  • echo os.system('/bin/bash') 这个是要输入到一个文件然后导入Python的os模块才可以使用
#!/usr/bin/python
import os
os.system('/bin/sh')
  • /bin/sh -i

查看挂载了哪些文件系统

  • mount
  • df -h

查看哪些没有挂载的文件系统

  • cat /etc/fstab

高级Linux文件系统权限使用SUID&SGID

find / -perm -1000 -type d 2>/dev/null   # Sticky bit - Only the owner of the directory or the owner of a file can delete or rename here.

find / -perm -g=s -type f 2>/dev/null    # SGID (chmod 2000) - run as the group, not the user who started it.

find / -perm -u=s -type f 2>/dev/null    # SUID (chmod 4000) - run as the owner, not the user who started it.

find / -perm -g=s -o -perm -u=s -type f 2>/dev/null    # SGID or SUID

for i in `locate -r "bin$"`; do find $i \( -perm -4000 -o -perm -2000 \) -type f 2>/dev/null; done    # Looks in 'common' places: /bin, /sbin, /usr/bin, /usr/sbin, /usr/local/bin, /usr/local/sbin and any other *bin, for SGID or SUID (Quicker search)

# find starting at root (/), SGID or SUID, not Symbolic links, only 3 folders deep, list with more detail and hide any errors (e.g. permission denied)

find / -perm -g=s -o -perm -4000 ! -type l -maxdepth 3 -exec ls -ld {} \; 2>/dev/null

确认在一些常见的目录(/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   # world-writeable & executable folders

确认哪些是存在缺陷可写的文件

find / -xdev -type d \( -perm -0002 -a ! -perm -1000 \) -print   # world-writeable files

find /dir -xdev \( -nouser -o -nogroup \) -print   # Noowner files

查找可利用的漏洞代码所需要的开发工具

  • find / -name perl*
  • find / -name python*
  • find / -name gcc*
  • find / -name cc

查看是否有可上传的命令工具

  • find / -name wget
  • find / -name nc*
  • find / -name netstat*
  • find / -name tftp*
  • find / -name ftp

查找exploit的代码网站

自动化脚本检查

其他枚举系统信息方法

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,539评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,911评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,337评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,723评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,795评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,762评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,742评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,508评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,954评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,247评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,404评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,104评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,736评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,352评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,557评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,371评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,292评论 2 352