File tree Expand file tree Collapse file tree 3 files changed +14
-3
lines changed Expand file tree Collapse file tree 3 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,11 @@ public Injector(Process process)
39
39
_shellCode = new Shellcode ( process ) ;
40
40
}
41
41
42
+ ~ Injector ( )
43
+ {
44
+ Dispose ( ) ;
45
+ }
46
+
42
47
/// <summary>
43
48
/// Injects a DLL into the target process.
44
49
/// </summary>
Original file line number Diff line number Diff line change 13
13
<RepositoryUrl >https://github.com/Reloaded-Project/Reloaded.Injector</RepositoryUrl >
14
14
<RepositoryType >git</RepositoryType >
15
15
<GenerateDocumentationFile >true</GenerateDocumentationFile >
16
+ <Version >1.0.1</Version >
16
17
</PropertyGroup >
17
18
18
19
<PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Release|AnyCPU'" >
34
35
35
36
<ItemGroup >
36
37
<PackageReference Include =" PeNet" Version =" 0.8.1" />
37
- <PackageReference Include =" Reloaded.Assembler" Version =" 1.0.3 " />
38
- <PackageReference Include =" Reloaded.Memory" Version =" 1.2.0 " />
39
- <PackageReference Include =" Reloaded.Memory.Buffers" Version =" 1.1.0 " />
38
+ <PackageReference Include =" Reloaded.Assembler" Version =" 1.0.4 " />
39
+ <PackageReference Include =" Reloaded.Memory" Version =" 1.2.1 " />
40
+ <PackageReference Include =" Reloaded.Memory.Buffers" Version =" 1.1.1 " />
40
41
</ItemGroup >
41
42
42
43
<ItemGroup >
Original file line number Diff line number Diff line change @@ -99,6 +99,11 @@ public Shellcode(Process targetProcess)
99
99
_assembler = null ;
100
100
}
101
101
102
+ ~ Shellcode ( )
103
+ {
104
+ Dispose ( ) ;
105
+ }
106
+
102
107
/* Call Shellcode */
103
108
104
109
public long GetProcAddress ( long hModule , string functionName )
You can’t perform that action at this time.
0 commit comments