Upload files to "imagemagick-gs-delegate-hijack-poc/helper"

This commit is contained in:
2026-06-29 16:46:53 +00:00
parent 4ad7ce586a
commit 47dda403be
2 changed files with 14 additions and 0 deletions
@@ -0,0 +1,13 @@
using System;
using System.IO;
class FakeGswin64c
{
static int Main(string[] args)
{
string marker = Environment.GetEnvironmentVariable("IM_GS_MARKER");
if (!String.IsNullOrEmpty(marker))
File.WriteAllText(marker, "fake gswin64c executed\n" + String.Join("\n", args));
return 0;
}
}
File diff suppressed because one or more lines are too long