-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathInjectFile.cs
95 lines (73 loc) · 3.05 KB
/
InjectFile.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
using HttpReverseProxy.Plugin.InjectFile;
using HttpReverseProxyLib.DataTypes;
using HttpReverseProxyLib.DataTypes.Enum;
using System;
using System.IO;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using TestsPlugins;
namespace TestsPluginsHostmapping
{
[TestClass]
public class InjectFile
{
#region MEMBERS
private string tempInputFilePath;
private string injectFilePath = @"c:\temp\file_inject.txt";
private string injectFileData = "INJECTED_FILE_DATA";
#endregion
#region (DE)INIT
[TestInitialize]
public void TestInit()
{
this.tempInputFilePath = Path.GetTempFileName();
if (File.Exists(this.injectFilePath) == false)
{
File.AppendAllText(this.injectFilePath, this.injectFileData);
}
}
[TestCleanup]
public void TestClean()
{
TestsPlugins.HelperMethods.Inst.RemoveFile(this.tempInputFilePath);
TestsPlugins.HelperMethods.Inst.RemoveFile(this.injectFilePath);
}
#endregion
// *google.c*||/path/to/file*.php||c:\tmp\injectfile.jpg
[TestMethod]
public void InjectFile_LoadConfig_Wildcard()
{
File.AppendAllText(this.tempInputFilePath, $@"*google.c*||/dir/file*.php||{this.injectFilePath}");
var conf = new Config();
conf.ParseConfigurationFile(this.tempInputFilePath);
Assert.IsTrue(Config.InjectFileRecords.Count == 1);
}
[TestMethod]
public void Inject_file_success()
{
File.AppendAllText(this.tempInputFilePath, $@"*google.c*||/path/to/file*.php||{this.injectFilePath}");
var conf = new Config();
var reqObj = TestsPlugins.HelperMethods.Inst.GenerateBasicRequest("http", "www.google.com", "/path/to/file/random.php");
var pluginInjectFile = new HttpReverseProxy.Plugin.InjectFile.InjectFile();
pluginInjectFile.PluginProperties.PluginHost = HelperMethods.Inst.GeneratePluginHost();
conf.ParseConfigurationFile(this.tempInputFilePath);
PluginInstruction instr = pluginInjectFile.OnPostClientHeadersRequest(reqObj);
Assert.IsTrue(Config.InjectFileRecords.Count == 1);
Assert.IsTrue(instr.Instruction == Instruction.SendBackLocalFile);
Assert.IsTrue(instr.InstructionParameters.Data == injectFilePath);
}
[TestMethod]
public void Inject_file_no()
{
File.AppendAllText(this.tempInputFilePath, $@"*google.c*||/path/to/file*.php||{this.injectFilePath}");
var conf = new Config();
var reqObj = TestsPlugins.HelperMethods.Inst.GenerateBasicRequest("http", "www.google.com", "/path/to/file/random.php");
var pluginInjectFile = new HttpReverseProxy.Plugin.InjectFile.InjectFile();
pluginInjectFile.PluginProperties.PluginHost = HelperMethods.Inst.GeneratePluginHost();
conf.ParseConfigurationFile(this.tempInputFilePath);
PluginInstruction instr = pluginInjectFile.OnPostClientHeadersRequest(reqObj);
Assert.IsTrue(Config.InjectFileRecords.Count == 1);
Assert.IsTrue(instr.Instruction == Instruction.SendBackLocalFile);
Assert.IsTrue(instr.InstructionParameters.Data == injectFilePath);
}
}
}