execls.s

来自「this gives details of the network progra」· S 代码 · 共 52 行

S
52
字号
	.file	"execls.c"	.version	"01.01"gcc2_compiled.:.globl args.data	.align 4	.type	 args,@objectargs:	.long .LC0	.long 0.section	.rodata.LC0:	.string	"/bin/ls"	.size	 args,8.LC1:	.string	"I'm not printed\n".text	.align 4.globl execls	.type	 execls,@functionexecls:	pushl %ebp	movl %esp,%ebp	pushl $args	pushl $.LC0	call execv	addl $8,%esp	pushl $.LC1	call printf	addl $4,%esp.L1:	leave	ret.Lfe1:	.size	 execls,.Lfe1-execls	.align 4.globl main	.type	 main,@functionmain:	pushl %ebp	movl %esp,%ebp	call execls	xorl %eax,%eax	jmp .L2	.align 4.L2:	leave	ret.Lfe2:	.size	 main,.Lfe2-main	.ident	"GCC: (GNU) 2.7.2.3"

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?