Add exploitarium archive

This commit is contained in:
ashton
2026-06-23 00:13:35 -05:00
commit b5d099261a
99 changed files with 5715 additions and 0 deletions

View File

@@ -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