[] NeoSense

Windows/x86 (XP SP3) - MessageBox Shellcode (11 bytes)

Author: d3c0der
type: 
platform: windows_x86
port: 11.0
date_added: 2018-01-18 
date_updated: 2018-01-18 
verified: 0 
codes:  
tags: Metasploit Framework (MSF)
aliases:  
screenshot_url:  
application_url: 

/*
Title: win32/xp pro sp3 MessageBox shellcode 11 bytes
Author: d3c0der - d3c0der[at]hotmail[dot]com
Tested on: WinXP Pro SP3 (EN)  # ( run MessageBox that show an error message )
website : Www.AttackerZ.ir
spt : All firends ;)
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>

char code[] =   "\x33\xd2\x52\x52\x52\x52\xe8\xbe\xe9\x44\x7d";

int main(int argc, char **argv)
{
    ((void (*)())code)();

    return 0;
}